-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
53 lines (53 loc) · 1.33 KB
/
package.json
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
{
"name": "react-javascript-quiz-app",
"version": "0.1.0",
"author": "Satyam Mishra",
"private": true,
"dependencies": {
"axios": "^1.4.0",
"body-parser": "^1.20.2",
"create-react-class": "^15.7.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"foreman": "^3.0.1",
"mongoose": "^7.3.0",
"nodemon": "^3.0.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.14.0",
"react-router-redux": "^5.0.0-alpha.9",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"prettier": "^3.3.2",
"react-scripts": "^5.0.1",
"redux-immutable-state-invariant": "^2.1.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"start-dev": "nf start -p 3000"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}