-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
76 lines (76 loc) · 1.75 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
75
76
{
"name": "bahn.guru",
"version": "0.17.0",
"private": true,
"description": "DB Preiskalender",
"keywords": [
"DB",
"allemand",
"bahn",
"calendar",
"deutsch",
"fare",
"german",
"hafas",
"kalender",
"preis",
"preise",
"preiskalender",
"prices",
"railway",
"sparpreis",
"train"
],
"homepage": "https://bahn.guru",
"bugs": "https://github.com/juliuste/bahn.guru/issues",
"repository": "juliuste/bahn.guru",
"license": "ISC",
"author": "Julius Tens <[email protected]>",
"contributors": [
"Benjamin Altpeter <[email protected]>"
],
"scripts": {
"build": "mkdir -p 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",
"dev": "nodemon src/index.js",
"test": "npm run lint && npm run check-deps"
},
"dependencies": {
"apicache": "^1.6.3",
"compression": "^1.7.4",
"db-hafas": "^3.1.1",
"express": "^4.18.2",
"fetch-ponyfill": "^7.1.0",
"hafas-client": "^6.1.1",
"hast-util-to-html": "^8.0.4",
"hastscript": "^7.2.0",
"helmet": "^4.6.0",
"horsey": "^4.2.2",
"js-beautify": "^1.14.9",
"lodash": "^4.17.21",
"moment-duration-format": "^2.3.2",
"moment-timezone": "^0.5.43",
"ms": "^2.1.3",
"p-queue": "^7.4.1",
"p-retry": "^4.6.2",
"p-timeout": "^5.1.0",
"unist-builder": "^3.0.1"
},
"devDependencies": {
"browserify": "^17.0.0",
"depcheck": "^1.4.6",
"eslint": "^8.49.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.22"
},
"engines": {
"node": ">=18"
},
"type": "module"
}