-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
91 lines (91 loc) · 2.6 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
{
"name": "promised-rest",
"version": "2.0.0",
"description": "BOILER PLATE REST API",
"main": "app.js",
"author": "Mithun Das <mithun.das@jumacro.com>",
"license": "MIT",
"private": false,
"engines": {
"node": ">=8.12.0",
"npm": ">=6.4.1",
"yarn": ">=1.10.1"
},
"scripts": {
"start": "gulp serve",
"build": "gulp",
"lint": "esw *.js server config --color",
"lint:watch": "yarn lint -- --watch",
"lint:fix": "yarn lint -- --fix",
"test": "cross-env NODE_ENV=test ./node_modules/.bin/mocha --ui bdd --reporter spec --colors --compilers js:babel-core/register ./api/**/*.test.js",
"test:watch": "yarn test -- --watch",
"test:coverage": "cross-env NODE_ENV=test ./node_modules/.bin/istanbul cover _mocha -- --ui bdd --reporter spec --colors --compilers js:babel-core/register ./api/**/*.test.js",
"test:check-coverage": "yarn test:coverage && istanbul check-coverage",
"report-coverage": "coveralls < ./coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "https://github.com/jumacro/PromisedREST.git"
},
"dependencies": {
"bluebird": "3.5.2",
"body-parser": "1.18.3",
"compression": "1.7.3",
"cookie-parser": "1.4.3",
"cors": "2.8.4",
"crypto-js": "3.1.9-1",
"debug": "4.0.1",
"express": "4.16.3",
"express-winston": "3.0.0",
"helmet": "3.13.0",
"http-status": "1.2.0",
"jsonfile": "5.0.0",
"jsonwebtoken": "8.3.0",
"method-override": "3.0.0",
"moment": "2.22.2",
"moment-timezone": "0.5.21",
"mongoose": "5.3.0",
"morgan": "1.9.1",
"passport": "0.4.0",
"passport-jwt": "4.0.0",
"winston": "3.1.0"
},
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/core": "7.1.2",
"@babel/preset-env": "7.1.0",
"@babel/register": "7.0.0",
"babel-plugin-add-module-exports": "1.0.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"chai": "4.2.0",
"coveralls": "3.0.2",
"cross-env": "5.2.0",
"del": "3.0.0",
"eslint": "5.6.1",
"eslint-config-airbnb-base": "13.1.0",
"eslint-fix": "1.0.3",
"eslint-plugin-import": "2.14.0",
"eslint-watch": "4.0.2",
"gulp": "3.9.1",
"gulp-babel": "8.0.0",
"gulp-load-plugins": "1.5.0",
"gulp-newer": "1.4.0",
"gulp-nodemon": "2.2.1",
"gulp-sourcemaps": "2.6.4",
"gulp-util": "3.0.8",
"istanbul": "0.4.5",
"mocha": "5.2.0",
"run-sequence": "2.2.1",
"supertest": "3.3.0",
"validate-commit-msg": "2.14.0"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"add-module-exports"
]
}
}