-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.36 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.36 KB
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
{
"name": "node-boilerplate",
"version": "0.0.0",
"private": true,
"main": "",
"scripts": {
"clean": "rm -rf ./build ./logs",
"build": "rm -rf ./build && ./node_modules/.bin/babel src --ignore spec.js,test.js --out-dir build",
"lint": "eslint --config=./.eslintrc src",
"lint:fix": "eslint --fix --config=./.eslintrc src",
"serve": "NODE_ENV=production node ./build/index.js",
"start": "NODE_ENV=development nodemon ./src/index.js --exec \"eslint --fix --config=./.eslintrc src & babel-node\"",
"tape:tests": "NODE_ENV=tests ./node_modules/.bin/tape -r babel-register ./src/**/__tests__/**/index.js | tap-notify | tap-diff"
},
"engines": {
"node": "5.4.0",
"npm": "3.3.12"
},
"dependencies": {
"js-yaml": "^3.6.1",
"nconf": "^0.8.4",
"winston": "^2.2.0",
"winston-daily-rotate-file": "^1.2.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-plugin-transform-async-to-generator": "6.8.0",
"babel-plugin-transform-object-rest-spread": "6.8.0",
"babel-preset-es2015-node5": "1.2.0",
"babel-register": "^6.6.5",
"eslint": "^2.13.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"nodemon": "^1.9.2",
"tap-diff": "^0.1.1",
"tap-notify": "^1.0.0",
"tape": "^4.6.0"
}
}