-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.4 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
{
"private": true,
"name": "vbb-web",
"description": "A basic web client for Berlin & Brandenburg public transport.",
"version": "0.1.0",
"keywords": [
"vbb",
"bvg",
"public",
"transport",
"berlin"
],
"main": "app.js",
"author": "Jannis R <[email protected]>",
"homepage": "https://github.com/derhuerst/vbb-web",
"repository": "derhuerst/vbb-web",
"issues": "https://github.com/derhuerst/vbb-web/issues",
"license": "ISC",
"engines": {
"node": ">=12"
},
"dependencies": {
"bvg-hafas": "^3.0.1",
"compression": "^1.7.4",
"express": "^4.17.1",
"luxon": "^1.17.1",
"ms": "^2.1.2",
"nocache": "^2.1.0",
"parse-relative-time": "^1.0.0",
"pithy": "^0.0.4",
"serve-static": "^1.14.1",
"vbb-short-station-name": "^1.0.1",
"vbb-stations": "^7.3.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"component-emitter": "^1.3.0",
"envify": "^4.1.0",
"horsey": "^3",
"uglify-es": "^3.0.15",
"vbb-logos": "github:derhuerst/vbb-logos#v2"
},
"scripts": {
"icons": "rm -f client/*.svg; cp node_modules/vbb-logos/*.svg client/",
"bundle": "env NODE_ENV=production browserify -g [babelify --presets [ @babel/preset-env ] ] -g envify client/index.js | uglifyjs -mc > client/bundle.min.js",
"build": "npm run icons && npm run bundle",
"prepublishOnly": "npm run build",
"start": "node index.js"
}
}