forked from VakinduPhilliam/NodeJS_Clean_Architecture
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.83 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
59
60
61
62
{
"name": "node-api-boilerplate",
"version": "1.1.1",
"description": "A Clean Architecture Node.js Application",
"main": "index.js",
"private": true,
"engines": {
"node": ">=7.6.0"
},
"scripts": {
"start": "node cluster.js",
"dev": "cross-env NODE_PATH=. NODE_ENV=development nodemon",
"test": "npm run test:all",
"test:all": "npm run test:unit && npm run test:features",
"test:unit": "cross-env NODE_PATH=. NODE_ENV=test mocha --opts test/mocha.opts.unit",
"test:features": "cross-env NODE_PATH=. NODE_ENV=test mocha --opts test/mocha.opts.features",
"coverage": "cross-env NODE_PATH=. NODE_ENV=test nyc mocha --opts test/mocha.opts.unit",
"lint": "eslint {src,test,config}/**/*.js",
"console": "cross-env NODE_PATH=. node src/interfaces/console/index.js",
"pm2": "pm2"
},
"repository": {},
"author": "Asyraf <me@asyraf.id>",
"license": "MIT",
"dependencies": {
"awilix": "^3.0.6",
"awilix-express": "^1.0.0",
"body-parser": "^1.18.2",
"compression": "^1.7.2",
"cors": "^2.8.4",
"cross-env": "^5.1.3",
"del": "^3.0.0",
"dotenv": "^5.0.1",
"eslint": "^4.18.2",
"express": "^4.16.2",
"express-status-monitor": "^1.0.1",
"express-validator": "^5.0.3",
"http-status": "^1.0.1",
"log4js": "^2.5.3",
"method-override": "^2.3.10",
"mongoose": "^5.0.8",
"morgan": "^1.9.0",
"pg": "^7.4.1",
"pm2": "^2.10.1",
"structure": "^1.2.2",
"swagger-ui-express": "^2.0.14"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-change": "^2.1.2",
"chance": "^1.0.13",
"dirty-chai": "^2.0.1",
"factory-girl": "^5.0.2",
"listr": "^0.13.0",
"mocha": "^5.0.1",
"nodemon": "^1.17.1",
"nyc": "^11.4.1",
"replace-in-file": "^3.1.1",
"supertest": "^3.0.0",
"supertest-as-promised": "^4.0.2"
}
}