-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 984 Bytes
/
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
{
"name": "ReactWeather",
"version": "1.0.0",
"description": "A weather app build with reactJs",
"main": "index.js",
"repository": "https://github.com/ankibalyan/ReactWeather.git",
"author": "Ankit Balyan",
"license": "MIT",
"dependencies": {
"axios": "^0.15.3",
"express": "^4.14.1",
"node-sass": "^4.5.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-router": "^3.0.2",
"sass-loader": "^5.0.1"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"compression-webpack-plugin": "^0.3.2",
"css-loader": "^0.26.1",
"foundation-sites": "^6.3.0",
"jquery": "^3.1.1",
"script-loader": "^0.7.0",
"style-loader": "^0.13.1",
"webpack": "^2.2.1"
},
"scripts": {
"build": "node_modules/.bin/webpack",
"test": "echo \"Error: no test specified\" && exit 1 ",
"start": "node server.js"
}
}