-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
74 lines (74 loc) · 1.92 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
{
"name": "6element",
"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 .",
"watch": "babel client/views/*.jsx --out-dir . --watch",
"build": "babel client/views/*.jsx --out-dir .",
"prod": "node server/index.js",
"preprod": "npm run build",
"monitor": "nodemon -L --watch server --watch client/*.js server/index.js",
"dev": "npm-run-all --parallel watch monitor",
"validate": "npm ls"
},
"babel": {
"presets": [
"react"
]
},
"repository": {
"type": "git",
"url": "https://github.com/anthill/6element.git"
},
"keywords": [
"waste",
"app",
"mobile",
"citizen",
"sustainable",
"development"
],
"author": "Ants",
"license": "MIT",
"bugs": {
"url": "https://github.com/anthill/6element/issues"
},
"homepage": "https://github.com/anthill/6element",
"dependencies": {
"body-parser": "^1.10.1",
"compression": "^1.6.0",
"core-js": "^1.2.1",
"es6-shim": "^0.31.3",
"express": "^4.12.4",
"jsdom": "^7.0.2",
"moment": "^2.11.1",
"moment-timezone": "^0.5.0",
"opening_hours": "^3.3.0",
"pg": "^4.4.2",
"pg-hstore": "^2.3.2",
"query-overpass": "^1.1.0",
"query-string": "^3.0.0",
"react": "0.14.5",
"react-dom": "0.14.5",
"request": "^2.65.0",
"socket.io": "^1.3.7",
"socket.io-client": "^1.3.7",
"sql": "^0.60.0",
"sql-generate": "^1.1.0",
"turf-centroid": "^1.1.3",
"vinyl-source-stream": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-preset-react": "^6.1.18",
"eslint": "^1.3.1",
"eslint-plugin-react": "^3.15.0",
"nodemon": "^1.8.1",
"npm-run-all": "^1.3.4",
"reactify": "^1.1.1",
"watchify": "^3.2.1"
}
}