forked from TNRIS/flood
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.86 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
90
91
{
"name": "flood-web-viewer",
"version": "0.0.1",
"description": "Texas flood information web viewer",
"private": true,
"scripts": {
"start": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js -d --hot --inline --config webpack.config.babel.js",
"webpack": "./node_modules/webpack/bin/webpack.js -p --config webpack.config.babel.js",
"dist": "NODE_ENV=production bash -c 'npm run clean && npm run webpack'",
"clean": "rm -rf ./dist/*",
"test": "NODE_PATH=./src mocha src/test/setup.js \"src/**/test.*.es\" --compilers js:babel-register,null:test/null-compiler",
"test-debug": "NODE_PATH=./src mocha debug src/test/setup.js \"src/**/test.*.es\" --compilers js:babel-register,null:test/null-compiler"
},
"engines": {
"node": ">=0.12.0",
"npm": ">=3.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/tnris/flood.git"
},
"author": "TNRIS",
"contributors": [
"Andy Wilson",
"James Seppi"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tnris/flood/issues"
},
"homepage": "https://github.com/tnris/flood",
"dependencies": {
"assets-webpack-plugin": "^3.2.0",
"autoprefixer-loader": "^3.2.0",
"axios": "^0.7.0",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-react-jsx": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"classnames": "^2.2.3",
"condense-whitespace": "^1.0.0",
"css-loader": "^0.16.0",
"es6-promise": "^3.1.2",
"eslint": "^1.10.3",
"eslint-config-airbnb": "0.0.8",
"eslint-config-mourner": "^2.0.0",
"eslint-plugin-react": "^3.16.1",
"expect": "^1.16.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"fullscreen": "^1.0.2",
"history": "1.13.1",
"jsdom": "^8.3.0",
"leaflet": "^0.7.7",
"mocha": "^2.4.5",
"node-sass": "^3.3.3",
"nodemon": "^1.4.1",
"object-assign": "^4.0.1",
"ramda": "^0.19.1",
"raw-loader": "^0.5.1",
"react": "^0.14.7",
"react-addons-pure-render-mixin": "^0.14.0",
"react-dom": "^0.14.7",
"react-hot-loader": "^1.3.0",
"react-mdl": "^1.4.4",
"react-redux": "^4.4.0",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.2",
"redux": "^3.3.1",
"redux-actions": "^0.9.1",
"redux-devtools": "^3.1.1",
"redux-responsive": "^2.0.0",
"redux-thunk": "^2.0.1",
"sass-loader": "^2.0.1",
"style-loader": "^0.12.4",
"swig": "^1.4.2",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"devDependencies": {
"react-addons-test-utils": "^15.0.1"
}
}