forked from doomsbuster/expressjs-microservice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.64 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "expressjs-microservice",
"version": "1.0.0",
"main": "index.js",
"description": "An opinionated minimalist boilerplate for expressjs based microservices.",
"license": "MIT",
"keywords": [
"expressjs",
"microservices",
"boilerplate",
"expressjs-boilerplate",
"api gateway",
"api",
"rest",
"expressjs microservice",
"express microservice"
],
"scripts": {
"start": "nodemon index.js",
"test": "istanbul cover -x **/spec/** --print detail ./node_modules/.bin/jasmine JASMINE_CONFIG_PATH=./spec/support/jasmine.json",
"debugtest": "istanbul cover -x **/spec/** --print detail ./node_modules/.bin/jasmine-node-debug JASMINE_CONFIG_PATH=./spec/support/jasmine.json",
"integtest": "./node_modules/.bin/jasmine JASMINE_CONFIG_PATH=./spec/support/jasmine-integ.json"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/thecrius/ms-boilerplate.git"
},
"dependencies": {
"body-parser": "~1.10.1",
"cookie-parser": "~1.3.3",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"hbs": "^4.0.1",
"knex": "^0.14.6",
"mysql": "^2.15.0",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"serve-favicon": "^2.4.5",
"sinon": "^4.1.3",
"swagger-jsdoc": "^1.9.7",
"winston": "^2.4.0",
"winston-daily-rotate-file": "^1.7.2"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-plugin-node": "^6.0.1",
"istanbul": "^0.4.5",
"jasmine": "^2.8.0",
"jasmine-spec-reporter": "^4.2.1",
"nodemon": "^1.17.3",
"supertest": "^3.0.0"
},
"engines": {
"node": ">=8.0.0"
}
}