-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
89 lines (89 loc) · 2.29 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "news-insights",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "better-npm-run start",
"build": "better-npm-run build",
"dev": "better-npm-run dev",
"debug": "better-npm-run debug",
"tos-css": "lessc client/tos.less | postcss -u autoprefixer -o public/tos.css"
},
"betterScripts": {
"build": {
"command": "webpack --config webpack/web.prod.config.js --progress --colors && npm run tos-css",
"env": {
"NODE_ENV": "production"
}
},
"start": {
"command": "node server/app.js",
"env": {
"NODE_ENV": "production"
}
},
"dev": {
"command": "node server/app.js",
"env": {
"NODE_ENV": "development"
}
},
"debug": {
"command": "node-debug server/app.js",
"env": {
"NODE_ENV": "development"
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/IBM-Bluemix/election-insights.git"
},
"dependencies": {
"alchemyapi_node": "git+https://github.com/kauffecup/alchemyapi_node.git#news-support",
"better-npm-run": "0.0.8",
"bluebird": "^3.4.0",
"body-parser": "^1.15.1",
"cfenv": "^1.0.3",
"classnames": "^2.2.5",
"d3": "^3.5.17",
"express": "^4.13.4",
"flux": "^2.1.1",
"keymirror": "^0.1.1",
"lodash": "^4.13.1",
"moment": "^2.13.0",
"mongoose": "^4.4.20",
"morgan": "^1.7.0",
"object-assign": "^4.1.0",
"react": "^15.1.0",
"react-bubble-chart": "^0.4.0",
"react-dom": "^15.1.0",
"superagent": "^2.0.0"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel": "^6.5.2",
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"css-loader": "^0.23.1",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"postcss-cli": "^2.5.2",
"postcss-loader": "^0.9.1",
"raw-loader": "^0.5.1",
"react-hot-loader": "^1.3.0",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.6",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"engines": {
"node": ">=6.0.0"
}
}