forked from kylealwyn/node-rest-api-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.81 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
{
"name": "node-rest-api-boilerplate",
"version": "0.10.0",
"description": "Boilerplate project for a restful node backend server powered by ES6 and Express",
"main": "index.js",
"scripts": {
"dev": "nodemon -w app --exec \"NODE_ENV=development babel-node-debug app --presets es2015,stage-0\"",
"build": "babel app -s -D -d dist --presets es2015,stage-0",
"clean": "rm -rf build && mkdir build",
"start": "NODE_ENV=production node dist/index.js",
"test": "NODE_ENV=test mocha --recursive --reporter spec --compilers js:babel-register tests",
"lint": "eslint app",
"test:watch": "nodemon --exec 'npm run test' tests",
"coverage": "NODE_ENV=test babel-node ./node_modules/.bin/isparta cover _mocha -- --recursive --reporter spec --compilers js:babel-register tests",
"validate": "npm run test && npm outdated --depth 0",
"prepareDeploy": "npm run -s build"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
},
"env": {
"node": true
},
"rules": {
"no-console": 0,
"no-unused-vars": 1
}
},
"babel": {
"presets": [
"flow"
]
},
"engines": {
"node": ">= 6",
"npm": ">= 3"
},
"repository": {
"type": "git",
"url": "git://github.com/ajhool/node-rest-api-boilerplate.git"
},
"keywords": [
"express",
"es6",
"rest",
"api",
"boilerplate",
"mongo"
],
"author": "Kyle Alwyn <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ajhool/node-rest-api-boilerplate/issues"
},
"homepage": "https://github.com/ajhool/node-rest-api-boilerplate",
"dependencies": {
"babel-runtime": "^6.23.0",
"bcrypt": "^1.0.0",
"body-parser": "^1.15.2",
"connect-ensure-login": "^0.1.1",
"cors": "^2.8.1",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"helmet": "^3.1.0",
"jsonwebtoken": "^7.1.0",
"lodash": "^4.16.4",
"method-override": "^2.3.6",
"mongoose": "^4.6.5",
"morgan": "^1.7.0",
"multer": "^1.2.0",
"passport": "^0.3.2",
"passport-auth0": "^0.6.0",
"request-promise": "^4.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.0.0",
"babel-node-debug": "^2.0.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"eslint": "^3.8.1",
"eslint-config-google": "^0.7.1",
"eslint-plugin-babel": "^4.0.0",
"faker": "^3.1.0",
"flow-bin": "^0.42.0",
"isparta": "^4.0.0",
"mocha": "^3.1.2",
"nodemon": "^1.11.0"
}
}