-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 1.43 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
{
"name": "weather-app",
"license": "MIT",
"version": "1.0.0",
"devDependencies": {
"compression-webpack-plugin": "^0.4.0",
"css-loader": "^0.28.0",
"copy-webpack-plugin": "^4.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"expose-loader": "^0.7.3",
"html-webpack-plugin": "^2.28.0",
"file-loader": "^0.11.1",
"font-loader": "^0.1.2",
"react-addons-test-utils": "^15.4.2",
"node-sass": "^4.5.3",
"open-browser-webpack-plugin": "^0.0.5",
"sass-loader": "^6.0.5",
"style-loader": "^0.16.1",
"resolve-url-loader": "^2.0.2",
"url-loader": "^0.5.8",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.5",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"google-map-react": "^0.24.0",
"lodash.throttle": "^4.1.1",
"normalize.css": "^7.0.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-select": "^1.0.0-rc.4",
"weather-icons": "erikflowers/weather-icons"
},
"scripts": {
"start": "API_HOST=http://localhost:9000 webpack-dev-server --config webpack.config.js --devtool eval --progress --hot",
"start:frontend": "API_HOST=http://ec2-52-59-160-108.eu-central-1.compute.amazonaws.com/api webpack-dev-server --config webpack.config.js --devtool eval --progress --hot",
"build": "rm -rf ./build && sbt fullOptJS && API_HOST=http://ec2-52-59-160-108.eu-central-1.compute.amazonaws.com/api webpack --config webpack.production.config.js"
}
}