-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1020 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1020 Bytes
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
{
"name": "cflockout",
"version": "1.0.0",
"description": "Lockout contest for practice on Codeforces",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server/index.js",
"server": "nodemon server/index.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"install:client": "npm install --prefix client",
"setup": "npm run install:client && npm install"
},
"author": "prayutsu",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-async-handler": "^1.2.0",
"express-validator": "^6.14.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.4",
"nodemailer": "^6.9.1",
"nodemon": "^2.0.22",
"react-toastify": "^9.0.3",
"socket.io": "^4.4.1"
},
"devDependencies": {
"concurrently": "^7.0.0"
}
}