-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 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
{
"name": "js-react-starter",
"version": "1.0.0",
"description": "DartBot the virtual tour guide provides the experience of a Dartmouth tour when an official tour is not available. DartBot operates through two main facets: a web application and a Facebook Messenger bot.",
"main": "src/index.js",
"scripts": {
"test": "./node_modules/.bin/eslint **.js",
"start": "webpack-dev-server --inline --hot",
"build": "WEBPACK_ENV=production node_modules/.bin/webpack --optimize-minimize --progress --color",
"deploy": "npm run build; surge -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/dartmouth-cs52/js-starter.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dartmouth-cs52/js-starter/issues"
},
"homepage": "https://github.com/dartmouth-cs52/js-starter#readme",
"devDependencies": {
"autoprefixer": "^6.3.7",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"image-webpack-loader": "^2.0.0",
"node-sass": "^3.8.0",
"postcss-loader": "^0.9.1",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"surge": "^0.18.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"axios": "^0.13.1",
"font-awesome": "^4.6.3",
"google-map-react": "^0.17.0",
"google-maps": "^3.2.1",
"immutable": "^3.8.1",
"leaflet": "^0.7.7",
"marked": "^0.3.6",
"react": "^15.3.0",
"react-bar-chart": "^0.1.1",
"react-d3": "^0.4.0",
"react-dom": "^15.2.1",
"react-google-maps": "^4.11.0",
"react-googlemaps": "^0.4.0",
"react-leaflet": "^0.12.1",
"react-redux": "^4.4.5",
"react-router": "^2.5.2",
"react-textarea-autosize": "^4.0.4",
"reactable": "^0.14.0",
"reactify": "^1.1.1",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0"
}
}