-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.47 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "node-api-base",
"fullname": "Node Api Base",
"version": "1.0.0",
"description": "",
"main": "./src/index.js",
"scripts": {
"start": "sequelize db:migrate && node ./node_modules/nodemon/bin/nodemon.js ./src/index.js",
"test": "NODE_ENV=\"test\" ./node_modules/.bin/mocha -w --reporter spec test/**/*_spec.js",
"seed": "sequelize db:seed:all",
"coverage": "NODE_ENV=\"test\" nyc --reporter=html ./node_modules/.bin/mocha -w --reporter spec test/**/*_spec.js"
},
"author": "",
"license": "",
"dependencies": {
"async": "^2.6.0",
"bcrypt": "^1.0.3",
"compression": "^1.7.1",
"config": "^1.28.1",
"cors": "^2.8.4",
"del": "^3.0.0",
"dotenv": "^6.0.0",
"express": "^4.16.2",
"helmet": "^3.9.0",
"http-status-codes": "^1.3.0",
"i18n": "^0.8.3",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.4",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"mv": "^2.1.1",
"omit-empty": "^0.4.1",
"os-homedir": "^1.0.2",
"pluralize": "^7.0.0",
"sequelize": "^4.28.1",
"sequelize-cli": "^3.2.0",
"socket.io": "^2.0.4",
"sqlite3": "^3.1.13",
"swagger-jsdoc": "^1.9.7",
"uuid": "^3.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-string": "^1.4.0",
"faker": "^4.1.0",
"mocha": "^4.1.0",
"mocha-prepare": "^0.1.0",
"nodemon": "^1.14.11",
"nyc": "^11.4.1",
"supertest": "^3.0.0"
},
"nyc": {
"exclude": [
"test",
"src/core"
]
}
}