-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.72 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
{
"name": "3ps",
"version": "0.0.1",
"description": "3rd party service status amalgamator",
"keywords": [
"3rd party services",
"status checker",
"status check"
],
"repository": "https://github.com/clownba0t/3ps.git",
"homepage": "https://github.com/clownba0t/3ps",
"bugs": "https://github.com/clownba0t/3ps/issues",
"main": "lib/server/server.js",
"dependencies": {
"async": "^1.5.0",
"bootstrap": "^3.3.6",
"bunyan": "^1.5.1",
"config": "^1.17.1",
"debug": "^2.2.0",
"express": "^4.13.3",
"mongodb": "^2.0.49",
"mongoose": "^4.2.8",
"newrelic": "^1.24.0",
"request": "^2.67.0",
"rollbar": "^0.5.10",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel": "^6.1.18",
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"eslint-plugin-react": "^3.10.0",
"history": "^1.13.1",
"jade": "^1.11.0",
"node-inspector": "^0.12.3",
"nodemon": "^1.8.1",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-hot-loader": "^1.3.0",
"react-router": "^1.0.0",
"reactify": "^1.1.1",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"scripts": {
"clean": "rm -rf lib",
"watch-js": "./node_modules/.bin/babel src -d lib -w",
"dev-server": "node lib/server/webpack",
"server": "nodemon lib/server/server | bunyan",
"start": "npm run watch-js & npm run dev-server & npm run server",
"build": "npm run clean && ./node_modules/.bin/babel src -d lib",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Daniel Carter",
"license": "GPL-2.0"
}