This repository was archived by the owner on Mar 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.51 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.51 KB
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
{
"name": "express-api-base",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "export NODE_ENV=production && node ./app.js",
"start:window": "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",
"db:reset": "yarn migrate:rollback && yarn migrate:latest && yarn seed:run",
"eslint": "eslint",
"lint:check": "eslint --ext .js .",
"lint:fix": "eslint --fix --ext .js .",
"test": "jest --coverage tests"
},
"dependencies": {
"bcrypt": "^5.0.1",
"chalk": "^4.1.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",
"mysql": "^2.18.1",
"nodemon": "^2.0.7"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"supertest": "^6.1.3"
}
}