-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 2.88 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": "node-api-boilerplate",
"version": "1.1.0",
"description": "Node API Boilerplate",
"author": "Renan Oliveira <[email protected]>",
"main": "src/index.js",
"private": false,
"engines": {
"node": ">=7.6",
"yarn": "*"
},
"scripts": {
"precommit": "yarn lint",
"prestart": "yarn docs",
"start": "cross-env NODE_ENV=production pm2 start -f --interpreter babel-node ./src/index.js",
"dev": "nodemon ./src/index.js --exec babel-node",
"lint": "eslint **/*.js --ignore-path .gitignore --ignore-pattern internals/scripts",
"lint:fix": "yarn lint -- --fix",
"lint:watch": "yarn lint -- --watch",
"test": "cross-env NODE_ENV=test nyc --reporter=html --reporter=text mocha --timeout 20000 --recursive --compilers js:babel-core/register --require babel-polyfill ./tests",
"test:unit": "cross-env NODE_ENV=test mocha ./tests/unit",
"test:integration": "cross-env NODE_ENV=test mocha --timeout 20000 --require babel-core/register ./tests/integration",
"test:watch": "cross-env NODE_ENV=test mocha --watch ./tests/unit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"postcoverage": "opn coverage/lcov-report/index.html",
"validate": "yarn lint && yarn test",
"postpublish": "git push --tags",
"deploy": "sh ./deploy.sh",
"docs": "apidoc -i src -o docs",
"postdocs": "opn docs/index.html"
},
"repository": {
"type": "git",
"url": "[email protected]:renanol/node-api-boilerplate.git"
},
"keywords": [
"express",
"node",
"node.js",
"mongodb",
"mongoose",
"passport",
"es6",
"es7",
"es8",
"es2017",
"mocha",
"istanbul",
"nyc",
"eslint",
"Travis CI",
"coveralls",
"REST",
"API",
"boilerplate",
"generator",
"starter project"
],
"dependencies": {
"bcryptjs": "2.4.3",
"bluebird": "^3.5.0",
"body-parser": "^1.17.0",
"compression": "^1.6.2",
"cors": "^2.8.3",
"cross-env": "^5.0.1",
"dotenv-safe": "^5.0.0",
"express": "^4.15.2",
"express-validation": "^1.0.2",
"helmet": "^3.5.0",
"http-status": "^1.0.1",
"jwt-simple": "0.5.2",
"joi": "^13.1.0",
"lodash": "^4.17.4",
"method-override": "^3.0.0",
"moment-timezone": "^0.5.13",
"mongoose": "^5.0.0",
"morgan": "^1.8.1",
"passport": "^0.4.0",
"passport-jwt": "4.0.0",
"pm2": "^3.0.0"
},
"devDependencies": {
"apidoc": "^0.17.5",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^2.13.1",
"eslint-config-airbnb-base": "13.0.0",
"eslint": "^5.0.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^4.1.0",
"husky": "^1.0.0",
"nodemon": "^1.11.0",
"nyc": "^12.0.1",
"opn-cli": "^3.1.0",
"sinon-chai": "^3.0.0",
"sinon": "^4.1.3",
"supertest": "^3.0.0"
},
"license": "MIT"
}