-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 990 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 990 Bytes
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
{
"name": "react-weather-app",
"version": "1.0.0",
"description": "Weather application with react",
"main": "index.js",
"scripts": {
"start": "watchify src/main.jsx -v -t [ babelify --presets [react] ] -o public/js/main.js",
"deploy": "ghpages",
"server": "http-server -p 6060"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elixir7/react-exercise-weatherAPI"
},
"author": "Isak Åslund",
"license": "ISC",
"bugs": {
"url": "https://github.com/elixir7/react-exercise-weatherAPI/issues"
},
"homepage": "https://github.com/elixir7/react-exercise-weatherAPI#readme",
"dependencies": {
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"ghpages": "0.0.3",
"history": "^1.17.0",
"http-server": "^0.8.5",
"jquery": "^2.2.0",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-router": "^1.0.3",
"segment-js": "^1.0.3",
"watchify": "^3.6.1",
"whatwg-fetch": "^0.10.1"
}
}