-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "esport-tournament-site",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "cross-env NODE_ENV=production node app.js",
"server": "nodemon app.js",
"client": "npm run start --prefix client",
"client:install": "npm install --prefix client",
"client:build": "npm run build --prefix client",
"dev": "cross-env NODE_ENV=development concurrently \"npm run server\" \"npm run client\""
},
"author": "Poznanskiy Denis <[email protected]>",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"config": "^3.3.6",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-validator": "^6.10.0",
"http": "0.0.1-security",
"http-proxy-middleware": "^1.0.6",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^5.12.0",
"multer": "^1.4.2",
"node-schedule": "^2.0.0",
"react-datepicker": "^3.6.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-select": "^4.2.1",
"socket.io": "^4.0.0"
},
"devDependencies": {
"concurrently": "^6.0.0",
"cross-env": "^7.0.3",
"nodemon": "^2.0.7"
},
"optionalDependencies": {
"bufferutil": "^4.0.3",
"utf-8-validate": "^5.0.4"
}
}