-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
66 lines (66 loc) · 1.8 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
{
"name": "express-es6-starter",
"version": "0.1.0",
"description": "Seed project for easily getting started with express for es6",
"scripts": {
"start": "nodemon ./server.js --exec babel-node",
"build": "babel . -d dist --presets es2015,stage-2 --ignore spec.js,node_modules",
"serve": "node dist/server.js",
"start_babel": "babel-node ./server.js --preset=babel-preset-es2015",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomyitav/express-es6-starter.git"
},
"keywords": [
"Node.js",
"Javascript",
"Express"
],
"author": "Tom Yitav <tomyitav@gmail.com>",
"dependencies": {
"body-parser": "^1.15.2",
"cors": "^2.8.0",
"express": "4.14.0",
"lodash": "^4.15.0",
"mongoose": "^4.8.6",
"morgan": "^1.8.2",
"winston": "^2.3.1",
"winston-daily-rotate-file": "^1.4.6"
},
"devDependencies": {
"babel-cli": "6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-plugin-inline-import": "^2.0.1",
"babel-plugin-transform-async-to-module-method": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-react": "^6.4.1",
"nodemon": "^1.9.1"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"airbnb/base",
"plugin:import/errors"
],
"rules": {
"no-use-before-define": 0,
"arrow-body-style": 0,
"dot-notation": 0,
"no-console": 0
},
"env": {
"mocha": true
}
}
}