forked from prozilla-os/ProzillaOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.51 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "prozilla-os",
"version": "0.1.0",
"private": false,
"author": "Prozilla",
"homepage": "https://os.prozilla.dev/",
"repository": "https://github.com/Prozilla/Prozilla-OS",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "sh deploy.sh"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"core-js": "^3.31.1",
"markdown-to-jsx": "^7.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"react-scripts": "5.0.1",
"react-svg": "^16.1.18",
"react-tabs": "^6.0.2",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"eslint-plugin-jsdoc": "^46.4.6",
"gh-pages": "^5.0.0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"plugins": [
"react",
"jsdoc"
],
"rules": {
"indent": [
"error",
"tab",
{
"SwitchCase": 1
}
],
"semi": "error",
"no-var": "error",
"prefer-const": "error",
"quotes": [
"error",
"double"
],
"object-curly-spacing": ["warn", "always"],
"default-case": "off",
"arrow-parens": "error",
"space-infix-ops": "warn",
"react/no-multi-comp": ["error", { "ignoreStateless": true }],
"jsdoc/no-undefined-types": "warn",
"jsdoc/require-param": "warn",
"jsdoc/check-tag-names": "warn",
"jsdoc/check-types": [
"warn",
{}
],
"jsdoc/check-values": "warn",
"jsdoc/empty-tags": "warn",
"jsdoc/check-param-names": "warn",
"jsdoc/check-property-names": "warn",
"jsdoc/check-access": "warn",
"jsdoc/check-alignment": "warn",
"jsdoc/multiline-blocks": "warn",
"jsdoc/no-blank-block-descriptions": "warn",
"jsdoc/require-hyphen-before-param-description": "warn"
},
"settings": {
"jsdoc": {
"preferredTypes": {
"Object": "object",
"object.<>": "Object<>",
"Object.<>": "Object<>",
"object<>": "Object<>"
}
}
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}