-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "train-ics-converter",
"version": "1.0.0",
"description": "Backend application for train-ics-converter",
"main": "dist/app.js",
"type": "module",
"scripts": {
"dev": "tsup src/app.ts --format esm --watch --ignore-watch client --onSuccess 'node dist/app.js'",
"start": "tsc && node dist/app.js",
"test": "vitest",
"build": "tsup src/app.ts --format esm --clean --minify"
},
"keywords": [],
"author": "Jannik<jannik@outlook.com>",
"private": true,
"license": "ISC",
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/express": "^4.17.1",
"@types/luxon": "^3.3.1",
"@types/node": "^20.5.6",
"@types/supertest": "^2.0.12",
"dayjs": "^1.11.9",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"rrule": "^2.6.8",
"supertest": "^6.3.3",
"typescript": "^5.2.2",
"vitest": "^0.34.1"
},
"dependencies": {
"@touch4it/ical-timezones": "^1.8.1",
"cors": "^2.8.5",
"express": "^4.17.3",
"hafas-client": "^6.1.0",
"ical-generator": "^5.0.1",
"tsup": "^7.2.0"
}
}