-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
{
"name": "FTCScouter",
"version": "0.1.0",
"scripts": {
"start": "webpack-dev-server --config webpack-dev-server.config.js --progress --inline --colors --history-api-fallback",
"build": "webpack --config webpack-production.config.js --progress --colors --history-api-fallback"
},
"private": true,
"devDependencies": {
"babel-core": "^6.3.26",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.5.0",
"html-webpack-plugin": "^2.7.2",
"react-hot-loader": "^1.3.0",
"transfer-webpack-plugin": "^0.1.4",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"babel-plugin-transform-class-properties": "^6.19.0",
"collections": "^5.0.4",
"firebase": "^3.3.0",
"material-ui": "^0.16.3",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-motion": "^0.4.7",
"react-router": "^2.6.1",
"react-swipeable-views": "^0.9.2",
"react-tap-event-plugin": "^2.0.0"
},
"babel": {
"env": {
"production": {
"plugins": [
"transform-react-constant-elements",
"transform-react-inline-elements"
]
}
}
}
}