-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"name": "express-api-base",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "set NODE_ENV=production && node ./app.js",
"dev": "set NODE_ENV=development && nodemon ./app.js",
"migrate:make": "knex migrate:make --knexfile src/config/knexfile.js",
"migrate:latest": "knex migrate:latest --knexfile src/config/knexfile.js",
"migrate:rollback": "knex migrate:rollback --knexfile src/config/knexfile.js",
"seed:make": "knex seed:make --knexfile src/config/knexfile.js",
"seed:run": "knex seed:run --knexfile src/config/knexfile.js",
"test": "jest --coverage tests"
},
"dependencies": {
"bcrypt": "^5.0.1",
"chalk": "^4.1.0",
"cloudinary": "^1.25.0",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"faker": "^5.4.0",
"http-errors": "~1.6.3",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.18",
"morgan": "~1.9.1",
"multer": "^1.4.2",
"mysql": "^2.18.1",
"nodemon": "^2.0.7"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"supertest": "^6.1.3"
}
}