-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.82 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
57
58
59
60
61
62
63
{
"name": "web-sprint-challenge-advanced-state",
"version": "0.0.1",
"scripts": {
"dev": "fkill :9000 :3000 -s && concurrently \"npm:backend\" \"npm:frontend\"",
"test": "cross-env NODE_ENV=testing jest --watch",
"webpack": "cross-env NODE_ENV=production webpack",
"heroku-postbuild": "npm run webpack",
"frontend": "webpack serve --open",
"backend": "node index.js",
"start": "npm run backend"
},
"devDependencies": {
"@babel/core": "7.18.2",
"@babel/plugin-transform-react-jsx": "7.17.12",
"@babel/plugin-transform-runtime": "7.18.2",
"@babel/preset-env": "7.18.2",
"@babel/preset-react": "7.17.12",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.3.0",
"@types/jest": "28.1.1",
"babel-loader": "8.2.5",
"babel-plugin-styled-components": "2.0.7",
"concurrently": "7.2.1",
"cross-env": "7.0.3",
"css-loader": "6.7.1",
"eslint": "8.17.0",
"eslint-plugin-react": "7.30.0",
"fkill-cli": "7.1.0",
"html-loader": "3.1.0",
"html-webpack-plugin": "5.5.0",
"jest": "28.1.1",
"jest-environment-jsdom": "^28.1.1",
"msw": "0.42.0",
"nodemon": "2.0.16",
"string-replace-loader": "3.1.0",
"style-loader": "3.3.1",
"webpack": "5.73.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.9.2"
},
"dependencies": {
"axios": "0.27.2",
"cors": "2.8.5",
"express": "4.18.1",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-redux": "8.0.2",
"react-router-dom": "6.3.0",
"redux": "4.2.0",
"redux-thunk": "2.4.1",
"styled-components": "5.3.5",
"yup": "0.32.11"
},
"engines": {
"node": "16.x",
"npm": "8.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bloominstituteoftechnology/web-sprint-challenge-advanced-state.git"
}
}