-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.26 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "rxntseedapiservice",
"version": "1.0.0",
"description": "RxNT Seed APIs",
"author": "RxNTTeam",
"main": "index.js",
"private": false,
"engines": {
"node": ">=6.x.x",
"npm": ">=3.x.x",
"yarn": ">=0.17.9"
},
"license": "MIT",
"scripts": {
"prestart": "yarn install && yarn lint",
"start": "nodemon ./index.js --exec babel-node",
"prestartdevqa": "yarn install --production",
"startdevqa": "pm2 start execute/process.devQA.json",
"prestartprodqa": "yarn install --production",
"startprodqa": "pm2 start execute/process.prodQA.json",
"prestartprodrelease": "yarn install --production",
"startprodrelease": "pm2 start execute/process.prodRelease.json",
"stopdevqa": "pm2 stop execute/process.devQA.json",
"stopprodqa": "pm2 stop execute/process.prodQA.json",
"stopprodrelease": "pm2 stop execute/process.prodRelease.json",
"getoutdatedpackages": "yarn outdated",
"prebuild": "yarn install && yarn lint",
"build": "gulp",
"lint": "esw *.js api config --color",
"lint:watch": "npm run lint -- --watch",
"test": "DeploymentEnv=test babel-node node_modules/.bin/isparta cover _mocha -- --ui bdd --reporter spec --colors --compilers js:babel-core/register ./server/**/*.test.js",
"test:watch": "npm run test -- --watch",
"test:check-coverage": "npm run test && istanbul check-coverage",
"report-coverage": "coveralls < ./coverage/lcov.info"
},
"dependencies": {
"async": "^2.1.2",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"compression": "1.7.0",
"concat-stream": "^1.5.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.1",
"express": "^4.14.0",
"express-winston": "^2.1.0",
"gridfs-stream": "^1.1.1",
"helmet": "^3.8.1",
"joi": "^10.6.0",
"joi-date-extensions": "^1.0.1",
"lodash": "^4.17.2",
"method-override": "^2.3.5",
"mongoose": "^4.11.5",
"mongoose-aliasfield": "^0.3.7",
"mssql": "^4.0.4",
"nodemailer": "^4.0.1",
"nodemailer-smtp-transport": "^2.7.2",
"promise": "^8.0.1",
"winston": "^2.3.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.0",
"commitizen": "^2.8.2",
"coveralls": "^2.11.6",
"cz-conventional-changelog": "^2.0.0",
"del": "^3.0.0",
"eslint": "^4.3.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-require-jsdoc": "1.0.4",
"eslint-watch": "^3.1.2",
"ghooks": "^2.0.0",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-load-plugins": "^1.2.0",
"gulp-newer": "^1.1.0",
"gulp-nodemon": "^2.0.6",
"gulp-sourcemaps": "^2.6.0",
"gulp-util": "^3.0.7",
"isparta": "4.0.0",
"mocha": "^3.5.0",
"nodemon": "1.11.0",
"pm2": "^2.6.1",
"run-sequence": "^2.1.0",
"supertest": "^3.0.0",
"supertest-as-promised": "4.0.2",
"validate-commit-msg": "^2.6.1"
},
"config": {
"ghooks": {},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"babel": {
"presets": [
"es2015",
"stage-2"
],
"plugins": [
"add-module-exports"
]
}
}