-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.33 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.33 KB
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": "final-project",
"version": "0.0.1",
"description": "A review time project",
"main": "index.js",
"scripts": {
"start": "npm run build-watch & npm run start-server ",
"build-watch": "webpack -w",
"start-server": "nodemon --watch server -e js,html server/index.js",
"seed": "node server/db/seed.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/material": "^5.11.5",
"@reduxjs/toolkit": "^1.8.1",
"axios": "^0.27.2",
"cors": "^2.8.5",
"express": "^4.18.1",
"faker": "^6.6.6",
"nodemon": "^2.0.16",
"pg": "^8.7.3",
"react": "^18.1.0",
"react-bootstrap-dropdown": "^0.3.0",
"react-dom": "^18.1.0",
"react-redux": "^v8.0.1",
"react-router-dom": "^6.4.5",
"react-sound": "^1.2.0",
"sequelize": "^6.27.0",
"util": "^0.12.5",
"uuid": "^9.0.0",
"volleyball": "^1.5.1",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"devDependencies": {
"@babel/core": "7.17.10",
"@babel/preset-env": "7.17.10",
"@babel/preset-react": "7.16.7",
"@babel/preset-stage-2": "^7.8.3",
"babel-loader": "8.2.5",
"eslint": "^8.30.0",
"eslint-plugin-react": "^7.31.11",
"webpack": "^5.72.0",
"webpack-dev-server": "^4.7.3"
}
}