-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
70 lines (70 loc) · 2.03 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
{
"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": {
"build": "npm run clean && babel app -d build",
"clean": "rm -rf build && mkdir build",
"start": "nodemon",
"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"
},
"engines": {
"node": ">= 6",
"npm": ">= 3"
},
"repository": {
"type": "git",
"url": "git://github.com/kylealwyn/node-rest-api-boilerplate.git"
},
"keywords": [
"express",
"es6",
"rest",
"api",
"boilerplate",
"mongo"
],
"author": "Kyle Alwyn <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kylealwyn/node-rest-api-boilerplate/issues"
},
"homepage": "https://github.com/kylealwyn/node-rest-api-boilerplate",
"dependencies": {
"babel-core": "^6.18.0",
"bcrypt": "^1.0.0",
"body-parser": "^1.15.2",
"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"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.18.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",
"isparta": "^4.0.0",
"mocha": "^3.1.2",
"nodemon": "^1.11.0"
}
}