-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.18 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
{
"name": "react-weather-foundation",
"version": "1.0.0",
"description": "Sample React project that uses Zurb's Foundation to fetch weather information",
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"start": "node server.js",
"dev": "webpack-dev-server --config webpack-dev-server.config.js --progress --inline --colors",
"build": "webpack --config webpack-production.config.js --progress --colors"
},
"private": false,
"devDependencies": {
"babel-core": "^6.3.26",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.7.2",
"node-sass": "^4.5.0",
"react-hot-loader": "^1.3.0",
"sass-loader": "^6.0.1",
"script-loader": "^0.7.0",
"style-loader": "^0.13.1",
"transfer-webpack-plugin": "^0.1.4",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"axios": "^0.15.3",
"express": "^4.14.1",
"foundation-sites": "^6.3.0",
"jquery": "^3.1.1",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-router": "^3.0.2"
}
}