-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 916 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
{
"name": "chel-league-backend",
"version": "1.0.0",
"description": "backend server for FBHL NHL online league",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build:ui": "rm -rf build && cd ../chel-league-frontend/ && npm run build && cp -r build ../chel-league-backend",
"deploy": "git push heroku master",
"deploy:full": "npm run build:ui && git add . && git commit -m uibuild && git push && npm run deploy",
"logs:prod": "heroku logs --tail"
},
"author": "Sean Heckathorne",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"dayjs": "^1.10.4",
"express": "^4.17.2",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.3.1",
"mongoose": "^6.2.4"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}