-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.25 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.25 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
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
{
"name": "es7-express-boilerplate",
"version": "1.0.0",
"main": "index.js",
"author": "Damikon",
"license": "MIT",
"keywords": [
"es6",
"es7",
"node",
"nodejs",
"expressjs",
"express",
"express4",
"boilerplate",
"starter",
"javascript"
],
"scripts": {
"start": "npm-run-all --parallel inspector debug",
"start:brk": "npm-run-all --parallel inspector debug:brk",
"inspector": "node-inspector",
"debug": "cross-env NODE_ENV=development nodemon --debug ./src",
"debug:brk": "cross-env NODE_ENV=development nodemon --debug-brk ./src",
"lint": "eslint ./src",
"rd": "rimraf dist",
"md": "mkdir dist",
"compile": "cross-env NODE_ENV=production babel ./src --out-dir ./dist --source-maps inline --ignore node_modules/** ",
"prebuild": "run-s rd",
"build": "run-s -n md compile copy:views",
"copy:views": "ncp src/views dist/views",
"node:run:build": "node --debug ./dist",
"build:inspect": "cross-env NODE_ENV=production npm-run-all --parallel inspector node:run:build"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"cross-env": "^4.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"ncp": "^2.0.0",
"node-inspector": "^1.1.0",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"babel-runtime": "^6.23.0",
"body-parser": "^1.17.2",
"boom": "^5.1.0",
"chalk": "^1.1.3",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.3",
"express": "^4.15.3",
"express-handlebars": "^3.0.0",
"express-logging": "^1.1.1",
"hbs": "^4.0.1",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"nocache": "^2.0.0",
"pretty-error": "^2.1.0",
"url": "^0.11.0",
"winston": "^2.3.1"
}
}