forked from JulianNorton/weather-10kb-wxkb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
42
43
44
45
46
47
48
49
50
51
{
"name": "weather-10kb",
"version": "0.2.6",
"description": "weather in 10kb",
"engines": {
"node": "5.9.1"
},
"main": "index.js",
"scripts": {
"start": "node index.js",
"build-css": "node-sass --include-path scss public/style/styles-compiler.scss public/style/main.css --output-style compressed",
"watch-css": "nodemon -e scss -x \"npm run build-css\""
},
"dependencies": {
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"dark-sky": "^1.0.9",
"dateformat": "^1.0.12",
"ejs": "^2.5.1",
"express": "^4.13.3",
"express-minify-html": "^0.6.0",
"geoip-lite": "^1.1.8",
"google-timezone-api": "^1.0.1",
"moment-timezone": "^0.5.5",
"node-freegeoip": "0.0.1",
"node-geocoder": "^3.14.0",
"object-merge": "^2.5.1",
"opbeat": "^3.17.2"
},
"repository": {
"type": "git",
"url": "https://github.com/JulianNorton/weather-10kb"
},
"keywords": [
"weather",
"hourly",
"10kb"
],
"license": "GPL-2.0",
"devDependencies": {
"babel-eslint": "^7.0.0",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"gulp": "^3.9.1",
"node-sass": "^3.9.0",
"nodemon": "^1.10.2"
}
}