forked from water-fountains/datablue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.88 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
{
"name": "datablue",
"license": "SEE LICENSE IN 'COPYING'",
"repository": {
"type": "git",
"url": "https://github.com/water-fountains/datablue"
},
"version": "1.0.0",
"description": "Datablue is a NodeJS Express server for collecting and aggregating open data.",
"main": "index.js",
"engines": {
"node": "8.11.1"
},
"scripts": {
"prestart": "node git.version",
"start": "cd build && node main",
"init_symlink_server": "ln -sf /etc/letsencrypt/live/water-fountains.org/cert.pem certificate.pem && ln -sf /etc/letsencrypt/live/water-fountains.org/privkey.pem privatekey.pem",
"precompile": "node git.version.js",
"compile": "node build.js && backpack build",
"predev": "node git.version",
"dev": "node build.js && backpack dev | pino -o 'short'",
"predebug": "node git.version.js",
"debug": "node build.js && backpack dev --inspect-brk | pino -o 'short'",
"test": "node build.js && _mocha --compilers js:babel-register --exit",
"heroku-prebuild": "cp .envTEMPLATE .env"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"dotenv": "^5.0.1",
"express": "^4.16.4",
"fs": "0.0.1-security",
"haversine": "^1.1.1",
"helmet": "^3.15.0",
"https": "^1.0.0",
"js-md5": "^0.7.3",
"lodash": "^4.17.11",
"node-cache": "^4.2.0",
"pino": "^4.17.6",
"query-overpass": "^1.5.3",
"source-map-support": "^0.5.10",
"swagger-express-middleware": "^2.0.1",
"utf8": "^3.0.0",
"wikidata-sdk": "^5.15.10"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"babel-preset-env": "^1.6.1",
"backpack-core": "^0.7.0",
"chai": "^4.2.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-import": "^2.16.0",
"mocha": "^5.0.5",
"shelljs": "^0.8.3",
"supertest": "^3.4.2"
}
}