-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2 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
{
"name": "febp",
"version": "1.0.0",
"engines": {
"node": "7.4.0"
},
"description": "Simple application to showcase how to achieve universal rendering and routing with React and Express.",
"main": "src/server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/newamericafoundation/febp.git"
},
"scripts": {
"start": "NODE_ENV=production node server.js",
"start-dev": "node_modules/.bin/webpack-dev-server --progress --inline --hot",
"build": "NODE_ENV=production webpack",
"heroku-postbuild": "NODE_ENV=production webpack"
},
"author": "Kirk Jackson",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-loader": "^6.2.5",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"css-loader": "^0.26.0",
"d3": "^4.4.0",
"express": "^4.16.2",
"file-loader": "^0.9.0",
"foundation-sites": "^6.2.4",
"google-maps": "^3.2.1",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.1.1",
"node-sass": "^3.13.0",
"normalize.css": "^7.0.0",
"papaparse": "^4.3.3",
"react": "^15.4.2",
"react-autosuggest": "^9.0.1",
"react-checkbox-group": "^3.3.4",
"react-dom": "^15.3.1",
"react-dropzone": "^3.13.2",
"react-faux-dom": "^3.0.0",
"react-form": "^1.2.6",
"react-helmet": "^5.2.0",
"react-redux": "^4.4.6",
"react-router": "^2.6.1",
"react-rte": "^0.14.1",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.7.2",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.1.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"svg-react-loader": "^0.3.7",
"topojson": "^3.0.0",
"url-loader": "^0.5.7",
"webpack": "^1.14.0"
},
"devDependencies": {
"react-hot-loader": "^1.3.1",
"webpack-dev-server": "^1.14.1"
}
}