-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "predictions",
"version": "1.0.0",
"description": "https://predictions-3205d.firebaseapp.com/",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --inline",
"compile": "webpack -p",
"copy": "mkdir -p build && cp index.html style.css manifest.json icon.png favicon.ico node_modules/normalize.css/normalize.css sw.js build/",
"build": "npm run copy && npm run compile",
"deploy-firebase": "firebase deploy",
"test": "mocha --compilers js:babel-register test/*.test.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"firebase": "^3.7.0",
"normalize.css": "^5.0.0",
"ramda": "^0.23.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-modal": "^1.7.3",
"recharts": "^0.21.2"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.4.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.24.0",
"chai": "^3.5.0",
"firebase-tools": "^3.5.0",
"mocha": "^3.2.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
},
"babel": {
"presets": [
"react",
"es2015"
]
}
}