-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.45 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
{
"name": "nodeApi",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"prod:start": "node ./dist/bundle",
"dev:start": "npm-run-all build:start --parallel dev:wabpack dev:nodemon",
"build:start": "npm-run-all build:clean build:building",
"dev:wabpack": "webpack --watch",
"dev:nodemon": "nodemon ./dist/bundle.js",
"build:clean": "rimraf dist",
"build:building": "webpack"
},
"devDependencies": {
"babel-loader": "^6.x.x",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.8.0",
"rimraf": "^2.6.2",
"webpack-node-externals": "^1.6.0",
"yarn-run-all": "^3.1.1"
},
"dependencies": {
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-beta.3",
"express": "^4.16.2",
"mongodb": "^2.2.33",
"nodemon": "^1.12.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"webpack": "^3.8.1"
},
"eslintConfig": {
"root": true,
"extends": [
"airbnb-base",
"prettier"
],
"env": {
"node": true
},
"rules": {
"quotes": [
"error",
"single"
]
}
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
}
}