-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.41 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.41 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
{
"name": "openmind14",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^1.6.8",
"cra-template": "1.2.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-js-pagination": "^3.0.3",
"react-paginate": "^8.2.0",
"react-router-dom": "^6.23.0",
"react-scripts": "^5.0.1",
"styled-components": "^6.1.9",
"styled-reset": "^4.5.2",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"postinstall": "husky install",
"format": "prettier --cache --write .",
"lint": "eslint --cache .",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/parser": "^7.24.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
}
}