-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 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
{
"name": "codegraded-project-react",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"start": "fkill :5000 :3000 -s && concurrently \"npm:backend\" \"npm:frontend\"",
"frontend": "webpack serve --open",
"backend": "node src/mocks/api.js"
},
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/plugin-transform-react-jsx": "7.14.9",
"@babel/plugin-transform-runtime": "7.15.0",
"@babel/preset-env": "7.15.6",
"@babel/preset-react": "7.14.5",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "12.1.0",
"@types/jest": "27.0.2",
"babel-loader": "8.2.2",
"babel-plugin-styled-components": "1.13.2",
"concurrently": "6.2.1",
"cross-env": "7.0.3",
"eslint": "7.32.0",
"eslint-plugin-react": "7.26.0",
"fkill-cli": "6.2.0",
"html-loader": "2.1.2",
"html-webpack-plugin": "5.3.2",
"jest": "26.6.3",
"msw": "0.35.0",
"nodemon": "2.0.12",
"webpack": "5.53.0",
"webpack-cli": "4.8.0",
"webpack-dev-server": "4.2.1"
},
"dependencies": {
"@testing-library/user-event": "^13.2.1",
"axios": "0.21.4",
"cors": "2.8.5",
"express": "4.17.1",
"jest-dom": "^4.0.0",
"moment": "^2.29.1",
"mutationobserver-shim": "^0.3.7",
"nanoid": "3.1.25",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^5.3.0",
"react-scripts": "5.0.1",
"styled-components": "5.3.1"
}
}