-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.9 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
{
"name": "stratuga-api",
"version": "1.0.0",
"description": "Stratuga",
"author": "Pedro Gomes <[email protected]>",
"main": "src/index.js",
"private": false,
"license": "MIT",
"engines": {
"node": ">=7.6",
"yarn": "*"
},
"scripts": {
"start": "cross-env NODE_ENV=production pm2 start ./src/index.js",
"start-dev": "eslint src --ignore-pattern .gitignore && node ./src/index.js",
"start-remote-dev": "eslint src --ignore-pattern .gitignore && node --inspect-brk=0.0.0.0:9229 --nolazy ./src/index.js",
"lint": "eslint src --ignore-pattern .gitignore",
"lint:fix": "yarn lint -- --fix",
"lint:watch": "yarn lint -- --watch",
"simpleTest": "node ./node_modules/mocha/bin/_mocha --timeout 0 --ui bdd ./src/Tests/Integration/",
"test": "cross-env NODE_ENV=test nyc --reporter=html --reporter=text mocha --timeout 20000 --recursive src/api/tests",
"test:unit": "cross-env NODE_ENV=test mocha src/api/tests/unit",
"test:integration": "cross-env NODE_ENV=test mocha --timeout 20000 src/api/tests/integration",
"test:watch": "cross-env NODE_ENV=test mocha --watch src/api/tests/unit",
"docs": "apidoc -i src -o docs",
"postdocs": "opn docs/index.html"
},
"repository": {
"type": "git",
"url": "[email protected]:otherview/es6-express-mvc-rest-api-boilerplate.git"
},
"keywords": [
"express",
"node",
"node.js",
"passport",
"es6",
"es7",
"es8",
"es2017",
"mocha",
"istanbul",
"nyc",
"eslint",
"Travis CI",
"coveralls",
"REST",
"API",
"boilerplate",
"generator",
"starter project"
],
"dependencies": {
"axios": "^0.16.2",
"bcryptjs": "2.4.3",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.0.0",
"compression": "^1.7.1",
"cors": "^2.8.4",
"cross-env": "^5.1.3",
"dotenv-safe": "^4.0.4",
"elasticsearch": "^15.0.0",
"express": "^4.16.3",
"express-validation": "^1.0.2",
"helmet": "^3.11.0",
"http-status": "^1.0.1",
"joi": "^13.6.0",
"jwt-simple": "0.5.1",
"lodash": "^4.17.5",
"method-override": "^2.3.10",
"moment-timezone": "^0.5.14",
"mongoose": "^5.0.4",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"passport-jwt": "^4.0.0",
"pm2": "^3.0.3",
"shortid": "^2.2.8",
"supertest": "^3.0.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"apidoc": "^0.17.5",
"coveralls": "^3.0.2",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"husky": "^0.14.3",
"mocha": "^5.0.0",
"nodemon": "^1.18.3",
"nyc": "^13.0.1",
"opn-cli": "^3.1.0",
"sinon": "^4.3.0",
"sinon-chai": "^2.14.0"
}
}