-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.3 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
{
"name": "Zeus",
"version": "0.0.1",
"description": "VR News for the gods",
"main": "server.js",
"engines": {
"node": "7.8.0",
"npm": "4.2.0"
},
"scripts": {
"clean": "rm -rf build",
"start-dev": "nodemon src/server.js --exec babel-node",
"start": "npm run build && npm run serve",
"lint": "rm eslint_output.txt && eslint src --fix > eslint_output.txt",
"build": "npm run clean && babel src -d build",
"serve": "node build/server.js"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git@github.com:pravbeatle/zeus.git"
},
"author": "praveen selvaraj",
"license": "MIT",
"dependencies": {
"apiai": "^4.0.2",
"axios": "^0.16.1",
"babel-cli": "^6.24.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"body-parser": "^1.17.1",
"compression": "^1.6.2",
"express": "^4.15.2",
"lodash": "^4.17.4",
"newsapi": "^1.0.2",
"node-bing-api": "^3.2.1",
"qs": "^6.4.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"nodemon": "^1.11.0"
}
}