-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.75 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
64
65
66
67
{
"name": "my-application",
"version": "0.0.1",
"description": "A review time project",
"main": "index.js",
"scripts": {
"start": "npm i && npm run build-watch & npm run start-server",
"build": "npm i && npm run build-watch",
"build-watch": "webpack -w",
"start-server": "nodemon --watch server -e js,html server/index.js",
"seed": "node script/seed.js",
"start-react": "npm i && react-scripts build && react-scripts start"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.5",
"@reduxjs/toolkit": "^1.8.1",
"axios": "^1.7.2",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"firebase": "^10.12.3",
"jsonwebtoken": "^9.0.0",
"nodemailer": "^6.9.1",
"nodemailer-sendgrid": "^1.0.3",
"nodemon": "^2.0.16",
"pg": "^8.7.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-redux": "^v8.0.1",
"react-router-dom": "^6.3.0",
"react-scripts": "^5.0.1",
"run": "^1.4.0",
"sequelize": "^6.20.0",
"server": "^1.0.38",
"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",
"webpack": "^5.72.0",
"webpack-dev-server": "^4.7.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}