-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.69 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
{
"name": "node-es6-starter",
"version": "0.1.0",
"description": "",
"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": "https://github.com/babarxn/node-es6-starter.git",
"author": "Babar Bilal <babarxm@gmail.com>",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "1.15.2",
"cors": "2.8.0",
"crypto": "1.0.1",
"express": "4.14.0",
"jsonwebtoken": "8.3.0",
"lodash": "4.17.11",
"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
}
}
}