-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.42 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
52
53
54
55
56
57
58
59
60
{
"name": "thermostats",
"version": "1.0.0",
"description": "Home thermostat survey & graphing application",
"main": "app.js",
"engines": {
"node": "5.5.0",
"npm": "3.3.12"
},
"scripts": {
"start": "node app.js",
"postinstall": "bower install; ./public/vendor/jvectormap/build.sh; mv jquery.jvectormap.min.js public/vendor/jvectormap/"
},
"eslintConfig": {
"env": {
"jquery": true,
"node": true,
"es6": true
},
"globals": {
"angular": false,
"jvm": false,
"app": true
},
"extends": "/Users/ryan/.eslint/personal.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NewEvolution/thermostats.git"
},
"keywords": [
"thermostat",
"heating",
"cooling",
"AC",
"energy"
],
"author": "Ryan Tanay <[email protected]> (http://portfolio.ryantanay.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/NewEvolution/thermostats/issues"
},
"homepage": "https://github.com/NewEvolution/thermostats#readme",
"dependencies": {
"body-parser": "^1.15.0",
"bower": "^1.7.9",
"connect-redis": "^3.0.2",
"express": "^4.13.4",
"express-session": "^1.13.0",
"node-sass-middleware": "^0.9.8",
"pg": "^4.5.1",
"pg-hstore": "^2.3.2",
"sequelize": "^3.19.3",
"superagent": "^1.8.1"
},
"devDependencies": {
"sequelize-cli": "^2.3.1",
"uglifyjs": "^2.4.10"
}
}