-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·43 lines (43 loc) · 1.07 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
{
"name": "redux-intro",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:5000",
"dependencies": {
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@fontsource/roboto": "^4.5.3",
"@material-ui/core": "^4.11.3",
"@mui/icons-material": "^5.4.4",
"@mui/material": "^5.4.4",
"@mui/styled-engine-sc": "^5.4.2",
"axios": "^0.21.1",
"pg": "^8.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "^5.0.0",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.3",
"styled-components": "^5.3.3"
},
"devDependencies": {
"nodemon": "^2.0.4"
},
"scripts": {
"start": "node server/server.js",
"build": "react-scripts build",
"client": "react-scripts start",
"server": "nodemon --watch server server/server.js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}