forked from lstkz/starter-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.79 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
67
68
69
70
{
"name": "nodejs-starter",
"version": "1.0.0",
"description": "",
"main": "src/app.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"dev": "better-npm-run dev",
"start": "better-npm-run start",
"oauth": "babel-node test_files/oauth"
},
"author": "",
"license": "GPL-3.0",
"betterScripts": {
"dev": {
"command": "nodemon --exec babel-node src/app | bunyan -o short -l trace",
"env": {
"NODE_ENV": "development"
}
},
"start": {
"command": "babel-node src/app",
"env": {
"NODE_ENV": "production"
}
}
},
"dependencies": {
"babel-cli": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
"better-npm-run": "0.0.11",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"bunyan": "^1.8.1",
"config": "^1.21.0",
"cors": "^2.8.1",
"decorate-it": "^1.1.0",
"express": "^4.14.0",
"express-api-error-handler": "^1.0.1",
"express-domain-middleware": "^0.1.0",
"express-session": "^1.14.2",
"express-wrap-async": "^1.0.2",
"http-errors": "^1.5.0",
"joi": "^9.0.4",
"lodash": "^4.16.0",
"mongoose": "^4.6.5",
"ms": "^0.7.2",
"mz": "^2.4.0",
"node-dir": "^0.1.16",
"passport": "^0.3.2",
"passport-google-oauth2": "^0.1.6",
"passport-http-bearer": "^1.0.1",
"socket.io": "^1.5.1",
"superagent": "^2.3.0",
"uuid": "^3.0.0"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"eslint": "^3.5.0",
"eslint-config-nodejs-recommended": "^2.1.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-lodash": "^1.10.3",
"nodemon": "^1.10.2"
}
}