-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.37 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.37 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": "node-ddd",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:http": "cross-env NODE_PATH=. nodemon",
"test": "nyc npm run test:unit",
"test:unit": "cross-env NODE_PATH=. NODE_ENV=test mocha --config test/unit.mocharc.js",
"db:migrate": "cross-env NODE_PATH=. sequelize db:migrate",
"db:reset": "cross-env NODE_PATH=. sequelize db:migrate:undo:all; cross-env NODE_PATH=. sequelize db:migrate",
"db:revert": "cross-env NODE_PATH=. sequelize db:migrate:undo",
"db:revert:all": "cross-env NODE_PATH=. sequelize db:migrate:undo:all",
"db:seed": "cross-env NODE_PATH=. sequelize db:seed:all"
},
"author": "",
"license": "ISC",
"dependencies": {
"awilix": "^4.2.6",
"awilix-express": "^3.0.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"chai-change": "^2.1.2",
"compression": "^1.7.4",
"cross-env": "^7.0.2",
"date-fns": "^2.16.1",
"dirty-chai": "^2.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-status": "^1.4.2",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"mysql2": "^2.2.5",
"pg": "^8.3.3",
"sequelize": "^6.3.5",
"structure": "^2.0.1"
},
"devDependencies": {
"chai": "^4.2.0",
"express-routes-catalogue": "^1.1.0",
"mocha": "^8.1.3",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"sinon": "^9.1.0"
}
}