-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.47 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
{
"name": "cs458_backend",
"version": "1.0.0",
"description": "",
"engines": {
"node": "12.18.4"
},
"scripts": {
"start": "node dist/app.js",
"build": "babel ./src -d dist/",
"clean": "rm -r node_modules/ && rm -r dist/",
"-- DATABASE_SCRIPTS --": "------------------------------------------------",
"db:mock-setup": "npx sequelize-cli db:migrate:undo:all && npx sequelize-cli db:migrate && npx sequelize-cli db:seed:all && echo DB SETUP COMPLETE!",
"-- CONTAINER_SCRIPTS --": "-----------------------------------------------",
"container:start": "nodemon -L ./src/app.js --watch src --exec babel-node",
"container:setup": "npm run db:mock-setup",
"-- RULE_ENFORCING --": "--------------------------------------------------",
"test": "jest test/"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/node": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"husky": "^5.0.9",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"sequelize-cli": "^6.2.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"md5": "^2.3.0",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"mysql2": "^2.2.5",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"sequelize": "^6.5.0",
"uuid": "^8.3.2",
"validator": "^13.5.2"
}
}