-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 2.45 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
{
"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": "14.16.0"
},
"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",
"predebug": "node git.version.js",
"debug": "node build.js && backpack dev --inspect",
"format": "prettier --write 'server/**/*.{ts,scss,css,html,json,yml}' && prettier --write '.github/**/*.yml' && prettier --write '*.{js,ts,css,scss,json,yml}'",
"lint": "eslint '*/**/*.{js,ts}' --fix --cache",
"pr": "npm run format && npm run lint"
},
"dependencies": {
"axios": "^0.24.0",
"axios-concurrency": "^1.0.4",
"axios-extensions": "^3.1.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"fs": "0.0.1-security",
"haversine": "^1.1.1",
"helmet": "^4.6.0",
"https": "^1.0.0",
"js-md5": "^0.7.3",
"lodash": "^4.17.21",
"nocache": "^3.0.1",
"node-cache": "^5.1.2",
"query-overpass": "^1.5.5",
"source-map-support": "^0.5.20",
"swagger-express-middleware": "^4.0.2",
"utf8": "^3.0.0",
"wikidata-sdk": "^7.14.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.13",
"@types/geojson": "^7946.0.8",
"@types/lodash": "^4.14.170",
"@types/node": "^14.17.3",
"@types/swagger-express-middleware": "^1.0.10",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"babel-eslint": "^10.1.0",
"babel-preset-env": "^1.6.1",
"backpack-core": "^0.8.4",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-file-progress": "^1.1.1",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.3.1",
"shelljs": "^0.8.4",
"ts-loader": "^8.3.0",
"typescript": "^4.3.2"
}
}