-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 972 Bytes
/
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
{
"name": "node-irsdk-inspector",
"version": "0.0.1",
"description": "node-irsdk-inspector",
"author": "Antti Pihlaja",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/apihlaja/node-irsdk-inspector.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:js": "browserify ./src/browser/app.js -o ./public/app.js",
"watch:js": "watchify ./src/browser/app.js -o ./public/app.js -v",
"build": "npm run build:js",
"server": "node src/server/server.js",
"start": "npm run build && npm run server"
},
"dependencies": {
"compression": "^1.6.1",
"constantina": "^0.1.1",
"express": "^4.13.4",
"js-yaml": "^3.6.0",
"jsoneditor": "^5.5.1",
"node-irsdk": "^1.0.12",
"node-sass-middleware": "^0.10.1",
"socket.io": "^1.4.5",
"socket.io-client": "^1.4.5"
},
"devDependencies": {
"browserify": "^13.0.0",
"watchify": "^3.7.0"
}
}