-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 857 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 857 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
{
"name": "HomeControl",
"description": "HomeControl Server",
"version": "0.0.1",
"private": true,
"license": "Apache Version 2.0",
"author": "Hemerson F. Camargo",
"engines": {
"node": "~4.2"
},
"scripts": {
"start": "node index.js",
"start:watch": "nodemon index.js",
"watch": "cd websrc && webpack --progress --colors --watch",
"postinstall": "cd websrc && npm install && ./node_modules/.bin/webpack",
"dev": "npm run watch & npm run start:watch",
"test": "node index.js & TASK_PID=$! && mocha test/*.js && kill $TASK_PID"
},
"dependencies": {
"express": "4.14.0",
"hapi": "^13.0.0",
"inert": "^4.0.2",
"pg": "^6.1.0",
"pg-hstore": "^2.3.2",
"sequelize": "^3.24.2",
"socket.io": "1.4.8",
"socket.io-client": "^1.4.8"
},
"devDependencies": {
"chai": "^3.5.0"
}
}