-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
56 lines (56 loc) · 1.56 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
54
55
56
{
"name": "react-shopping-cart",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@testing-library/jest-dom": "^5.11.8",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.6.0",
"@types/jest": "^26.0.20",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@types/styled-components": "^5.1.7",
"express": "^4.18.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-query": "^3.39.0",
"sass-loader": "^11.1.1",
"style-loader": "^2.0.0",
"styled-components": "^5.2.1",
"ts-loader": "^9.3.0",
"typescript": "^4.7.2",
"web-vitals": "^2.1.4",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-middleware": "^5.3.3",
"webpack-hot-middleware": "^2.25.1",
"webpack-node-externals": "^3.0.0"
},
"scripts": {
"build": "webpack",
"watch:build": "webpack -w",
"watch:server": "nodemon dist/server.js --open",
"watch:client": "npx webpack serve",
"start": "npm-run-all build --parallel watch:*"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@types/express": "^4.17.13",
"@types/node": "16.11.7",
"html-webpack-plugin": "^5.5.0",
"interpolate-html-plugin": "^4.0.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"react-refresh": "^0.12.0",
"react-refresh-typescript": "^2.0.4",
"react-scripts": "^5.0.1"
}
}