forked from juliuste/bahn.guru
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.99 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
{
"name": "mav.guru",
"version": "0.2.4",
"private": true,
"description": "MAV ticket price calendar",
"keywords": [
"MAV",
"hungary",
"allemand",
"bahn",
"calendar",
"deutsch",
"fare",
"german",
"kalender",
"preis",
"preise",
"preiskalender",
"prices",
"railway",
"train"
],
"homepage": "https://github.com/martinlangbecker/mav.guru",
"bugs": "https://github.com/martinlangbecker/mav.guru/issues",
"repository": "martinlangbecker/mav.guru",
"license": "ISC",
"author": "Martin Langbecker <[email protected]>",
"scripts": {
"build": "mkdir -p assets/scripts/bundle && browserify assets/scripts/bahn.js > assets/scripts/bundle/bahn.js",
"build-windows": "if not exist .\\assets\\scripts\\bundle mkdir .\\assets\\scripts\\bundle && browserify .\\assets\\scripts\\bahn.js > .\\assets\\scripts\\bundle\\bahn.js",
"check-deps": "depcheck . --ignore-dirs=bundle",
"fix": "npm run lint -- --fix",
"lint": "eslint src",
"start": "NODE_ENV=production && node src/index.js",
"start-windows": "npx cross-env NODE_ENV=production && node .\\src\\index.js",
"dev": "nodemon src/index.js",
"test": "npm run lint && npm run check-deps"
},
"dependencies": {
"apicache": "^1.6.3",
"compression": "^1.7.4",
"express": "^4.19.2",
"fetch-ponyfill": "^7.1.0",
"hast-util-to-html": "^8.0.4",
"hastscript": "^7.2.0",
"helmet": "^4.6.0",
"horsey": "^4.2.2",
"js-beautify": "^1.15.1",
"lodash": "^4.17.21",
"mav-prices": "^0.4.0",
"mav-stations": "^0.3.2",
"moment-duration-format": "^2.3.2",
"moment-timezone": "^0.5.45",
"ms": "^2.1.3",
"p-queue": "^7.4.1",
"p-retry": "^4.6.2",
"p-timeout": "^5.1.0",
"pnpm": "^9.4.0",
"unist-builder": "^3.0.1"
},
"devDependencies": {
"browserify": "^17.0.0",
"depcheck": "^1.4.7",
"eslint": "^8.57.0",
"nodemon": "^2.0.22"
},
"engines": {
"node": ">=19"
},
"type": "module"
}