-
Notifications
You must be signed in to change notification settings - Fork 1k
/
package.json
executable file
·63 lines (63 loc) · 1.83 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-module-project-testing-react",
"version": "0.0.1",
"scripts": {
"dev": "fkill :9009 :3003 -f -s && concurrently \"npm:backend\" \"npm:frontend\"",
"test": "jest --watchAll --verbose",
"build": "cross-env NODE_ENV=production webpack",
"frontend": "webpack serve --open",
"backend": "node backend/server.js",
"start": "npm run backend"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.11",
"babel-loader": "^9.1.3",
"babel-plugin-styled-components": "^2.1.4",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"css-loader": "^6.9.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"file-loader": "^6.2.0",
"fkill-cli": "^8.0.0",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.7.7",
"msw": "^2.1.2",
"nodemon": "^3.0.3",
"string-replace-loader": "^3.1.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@reduxjs/toolkit": "^2.0.1",
"axios": "^1.6.5",
"cors": "^2.8.5",
"express": "^4.18.2",
"framer-motion": "^10.18.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.0",
"react-router-dom": "^6.21.2",
"striptags": "^3.2.0",
"styled-components": "^6.1.8",
"yup": "^1.3.3"
},
"engines": {
"node": ">=18.x",
"npm": ">=9.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bloominstituteoftechnology/web-module-project-testing-react.git"
}
}