-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 981 Bytes
/
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
{
"name": "rosters-gg",
"version": "0.3.0",
"description": "Esports Team Management Platform",
"main": "server.js",
"scripts": {
"start": "npx babel-node server.js",
"heroku-postbuild": "cd client && npm install && npm run build",
"server": "npx nodemon --exec npx babel-node server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "Owen Moreau",
"license": "ISC",
"dependencies": {
"axios": "0.21.1",
"bcryptjs": "2.4.3",
"concurrently": "5.0.2",
"cors": "2.8.5",
"dotenv": "8.2.0",
"express": "4.17.1",
"jsonwebtoken": "8.5.1",
"jwt-decode": "3.1.2",
"mongoose": "5.12.7",
"nodemailer": "6.4.11",
"validator": "12.1.0"
},
"devDependencies": {
"@babel/core": "7.8.3",
"@babel/node": "7.8.3",
"@babel/preset-env": "7.8.3",
"nodemon": "2.0.7"
},
"engines": {
"node": "13.12.0",
"npm": "6.14.4"
}
}