forked from anthill/pheromon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.57 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
73
74
75
76
77
78
79
80
81
{
"name": "pheromon",
"version": "1.0.0",
"description": "Reducing waste with sensors and an app",
"main": "index.js",
"scripts": {
"postinstall": "if [ -d .git ]; then cp ./git-hooks/pre-commit ./.git/hooks/pre-commit; chmod a+x ./.git/hooks/pre-commit; fi",
"lint": "eslint .",
"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",
"preprod": "npm run build",
"prealpha": "npm run build",
"test": "docker-compose -p pheromontest -f compose-test.yml up --force-recreate",
"dev": "npm-run-all --parallel 'dev:*'",
"prod": "npm-run-all --parallel 'prod:*'",
"postdev": "npm run watch",
"validate": "npm ls"
},
"repository": {
"type": "git",
"url": "https://github.com/anthill/pheromon.git"
},
"keywords": [
"app",
"mobile",
"citizen",
"sustainable",
"development",
"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.7",
"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",
"eslint": "^1.3.1",
"eslint-plugin-react": "^3.5.0",
"mocha": "^2.3.2",
"nodemon": "^1.8.1",
"watchify": "^3.2.1"
}
}