-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.19 KB
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
45
46
{
"name": "weatherapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack --config ./webpack.prod.config.js --progress --colors",
"start": "node app.js"
},
"author": "MichaelSedov",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.0.20",
"babel-eslint": "^4.1.3",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.0.15",
"css-loader": "^0.26.1",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.6.2",
"express": "^4.13.4",
"file-loader": "^0.9.0",
"node-sass": "^4.1.1",
"react-hot-loader": "^1.3.0",
"react-router": "^3.0.0",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.12.2",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"dependencies": {
"axios": "^0.15.3",
"express": "^4.14.0",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"react-places-autocomplete": "^2.6.0"
},
"engines": {
"node": "6.9.4",
"npm": "3.10.10"
}
}