-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.4 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
{
"scripts": {
"start": "npm run serve | npm run proxy-server | npm run dev",
"serve": "./node_modules/.bin/http-server -p 8080 -cors -o",
"proxy-server": "node proxy.js",
"dev": "webpack-dev-server --progress --colors --port 8090 --config ./config/webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"name": "cs4460-final-project",
"version": "1.0.0",
"description": "Final CS 4460 info viz project",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/tituswoo/cs4460-final-project.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tituswoo/cs4460-final-project/issues"
},
"homepage": "https://github.com/tituswoo/cs4460-final-project#readme",
"dependencies": {
"chart.js": "^1.0.2",
"classnames": "^2.2.1",
"font-awesome": "^4.4.0",
"history": "^1.17.0",
"jquery": "^2.1.4",
"react": "^0.14.2",
"react-chartjs": "^0.6.0",
"react-dom": "^0.14.2",
"react-google-maps": "^4.2.0",
"react-router": "^1.0.0",
"react-typeahead": "^1.1.5",
"reflux": "^0.3.0"
},
"devDependencies": {
"babel-core": "^6.0.17",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"http-server": "^0.8.5",
"jsx-loader": "^0.13.2",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.1"
}
}