-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
72 lines (72 loc) · 2.12 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "pheromon",
"version": "2.0.0",
"description": "IoT plateform",
"engines": {
"node": "6.11.0"
},
"main": "index.js",
"scripts": {
"prebuild": "npm install",
"build:dashboard": "browserify api/clients/Dashboard/src/main.js -o api/clients/Dashboard-browserify-bundle.js -v",
"build:admin": "browserify api/clients/Admin/src/main.js -o api/clients/Admin-browserify-bundle.js -v",
"build": "npm-run-all --parallel 'build:*'",
"watch:dashboard": "watchify api/clients/Dashboard/src/main.js -o api/clients/Dashboard-browserify-bundle.js -v -d",
"watch:admin": "watchify api/clients/Admin/src/main.js -o api/clients/Admin-browserify-bundle.js -v -d",
"watch": "npm-run-all --parallel 'watch:*'",
"prod:api": "node api/api.js",
"dev:api": "nodemon -L --watch api --watch database api/api.js",
"dev": "npm-run-all --parallel 'dev:*'",
"prod": "npm-run-all --parallel 'prod:*'"
},
"repository": {
"type": "git",
"url": "https://github.com/anthill/pheromon.git"
},
"keywords": [
"IoT",
"raspberry pi",
"sensor management"
],
"author": "Ants",
"license": "MIT",
"bugs": {
"url": "https://github.com/anthill/pheromon/issues"
},
"homepage": "https://github.com/anthill/pheromon",
"dependencies": {
"better-log": "^1.1.0",
"body-parser": "^1.10.1",
"browserify": "^10.2.0",
"compression": "^1.4.4",
"dygraphs": "^1.1.1",
"es6-shim": "^0.31.2",
"express": "^4.12.4",
"immutable": "^3.7.4",
"keymirror": "^0.1.1",
"leaflet": "^0.7.3",
"moment": "^2.10.3",
"mqtt": "^1.6.3",
"node-ansible": "^0.5.2",
"npm-run-all": "^1.3.4",
"pg": "^4.3.0",
"pheromon-codecs": "0.0.8",
"pokemon-names": "^1.0.0",
"react": "^0.13.3",
"redis": "^1.0.0",
"request": "^2.58.0",
"socket.io": "^1.3.5",
"socket.io-client": "^1.3.5",
"sql": "^0.51.0",
"sql-generate": "^1.0.0",
"ubique": "^0.5.0",
"vinyl-source-stream": "^1.1.0"
},
"devDependencies": {
"chai": "^3.2.0",
"chai-as-promised": "^5.1.0",
"mocha": "^2.3.2",
"nodemon": "^1.8.1",
"watchify": "^3.2.1"
}
}