-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 894 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 894 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
37
38
39
{
"name": "task-scheduling-api",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"test": "mocha --reporter spec",
"pretest": "NODE_ENV=test npx sequelize-cli db:migrate"
},
"engines": {
"node": "16.x"
},
"dependencies": {
"bcrypt": "^5.0.1",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.0.0",
"ejs": "~2.6.1",
"express": "~4.16.1",
"express-jwt": "^6.1.1",
"@faker-js/faker": "^6.0.0",
"http-errors": "~1.6.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mocha": "^9.2.2",
"morgan": "~1.9.1",
"nodemailer": "^6.7.3",
"pg": "^8.7.3",
"request": "^2.88.2",
"sanitize-html": "^2.7.0",
"sequelize": "^6.17.0"
},
"devDependencies": {
"sequelize-cli": "^6.4.1"
}
}