-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
142 lines (142 loc) · 6.68 KB
/
package.json
File metadata and controls
142 lines (142 loc) · 6.68 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "prima-next",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"kysely": "kysely",
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --no-tsconfig --watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint . --ignore-pattern src/lib/openapi",
"test": "npm run test:unit -- --run && npm run test:e2e",
"test:e2e": "playwright test",
"test:unit": "./setup-db.sh && vitest --fileParallelism false",
"test:gen": "./setup-db.sh && vitest src/lib/server/booking/taxi/tests/generatedTests/gen.test.ts --fileParallelism false",
"test:one": "./setup-db.sh && vitest src/lib/server/availabilityCompensation/availabilityCompensation.test.ts --fileParallelism false",
"sim": "pnpx vite-node --options.transformMode.ssr='/.*/' scripts/simulation/script.ts",
"sim:health": "pnpx vite-node --options.transformMode.ssr='/.*/' scripts/simulation/script.ts -- --ongoing --health --restrict --bu --wl",
"sim:nohealth": "pnpx vite-node --options.transformMode.ssr='/.*/' scripts/simulation/script.ts -- --ongoing --restrict --bu",
"sim:cost": "pnpx vite-node --options.transformMode.ssr='/.*/' scripts/simulation/script.ts -- --ongoing --cost --wl --restrict --bu",
"sim:all": "pnpx vite-node --options.transformMode.ssr='/.*/' scripts/simulation/script.ts -- --ongoing --cost --wl --restrict --bu --health",
"sim:full": "pnpx vite-node --options.transformMode.ssr='/.*/' scripts/simulation/script.ts -- --ongoing --cost --restrict --bu --full --health",
"sim:rs": "pnpx vite-node --options.transformMode.ssr='/.*/' scripts/simulation/script.ts -- --ongoing --cost --restrict --bu --full --health --mode=rs",
"sim:taxi": "pnpx vite-node --options.transformMode.ssr='/.*/' scripts/simulation/script.ts -- --ongoing --cost --restrict --bu --full --health --mode=taxi",
"sim:pt": "pnpx vite-node --options.transformMode.ssr='/.*/' scripts/simulation/script.ts -- --seconds=10 --full --mode=pt",
"sim:taxionly": "pnpx vite-node --options.transformMode.ssr='/.*/' scripts/simulation/script.ts -- --seconds=10 --full --mode=taxionly",
"health": "pnpx vite-node --options.transformMode.ssr='/.*/' scripts/healthScript.ts",
"healthrs": "pnpx vite-node --options.transformMode.ssr='/.*/' scripts/healthScriptRideShare.ts",
"restore": "pnpx vite-node --options.transformMode.ssr='/.*/' scripts/reproduce/restore.ts",
"reset": "scripts/reproduce/reset-db.sh",
"rr": "npm run reset && npm run restore",
"book": "pnpx vite-node --options.transformMode.ssr='/.*/' scripts/reproduce/callBookingApi.ts",
"white": "pnpx vite-node --options.transformMode.ssr='/.*/' scripts/reproduce/callWhitelist.ts",
"move": "pnpx vite-node --options.transformMode.ssr='/.*/' scripts/reproduce/callMoveTour.ts",
"cancelr": "pnpx vite-node --options.transformMode.ssr='/.*/' scripts/reproduce/callCancelRequest.ts",
"cancelt": "pnpx vite-node --options.transformMode.ssr='/.*/' scripts/reproduce/callCancelTour.ts",
"acceptrs": "pnpx vite-node --options.transformMode.ssr='/.*/' scripts/reproduce/callAcceptRideShareRequest.ts",
"addrs": "pnpx vite-node --options.transformMode.ssr='/.*/' scripts/reproduce/callAddRideShareTour.ts",
"bookrs": "pnpx vite-node --options.transformMode.ssr='/.*/' scripts/reproduce/callRideShareApi.ts",
"pas": "pnpx vite-node --options.transformMode.ssr='/.*/' scripts/reproduce/callPlanAndSign.ts",
"repeatb": "npm run rr && npm run book",
"repeatr": "npm run rr && npm run cancelr",
"repeatt": "npm run rr && npm run cancelt",
"repeatm": "npm run rr && npm run move",
"repeatacc": "npm run rr && npm run acceptrs",
"repeatadd": "npm run rr && npm run addrs",
"repeatbookrs": "npm run rr && npm run bookrs",
"repeatpas": "npm run rr && npm run pas",
"repeatbh": "npm run rr && npm run book && npm run health",
"repeatrh": "npm run rr && npm run cancelr && npm run health",
"repeatth": "npm run rr && npm run cancelt && npm run health",
"repeatmh": "npm run rr && npm run move && npm run health",
"repeatacch": "npm run rr && npm run acceptrs && npm run healthrs",
"repeataddh": "npm run rr && npm run addrs && npm run healthrs",
"repeatbookrsh": "npm run rr && npm run bookrs && npm run healthrs",
"flc": "npm run format && npm run lint && npm run check",
"updateDurations": "pnpx vite-node --options.transformMode.ssr='/.*/' scripts/updateDatabaseDurations.ts"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.18.0",
"@internationalized/date": "^3.7.0",
"@playwright/test": "^1.50.0",
"@sveltejs/adapter-node": "^5.2.12",
"@sveltejs/kit": "^2.16.1",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@types/d3": "^7.4.3",
"@types/nodemailer": "^6.4.17",
"@types/polyline": "^0.1.32",
"autoprefixer": "^10.4.20",
"bits-ui": "1.8.0",
"clsx": "^2.1.1",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^15.14.0",
"lucide-svelte": "^0.474.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"svelte": "^5.19.2",
"svelte-check": "^4.1.4",
"tailwind-merge": "^2.6.0",
"tailwind-variants": "^0.2.1",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"vaul-svelte": "1.0.0-next.3",
"vite": "^6.0.11",
"vitest": "^3.0.4"
},
"dependencies": {
"@codecorn/euro-plate-validator": "^1.0.15",
"@hey-api/client-fetch": "^0.7.1",
"@jaames/iro": "^5.5.2",
"@mapbox/polyline": "^1.2.1",
"@node-rs/argon2": "^2.0.2",
"@observablehq/plot": "^0.6.17",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@tailwindcss/typography": "^0.5.16",
"@types/file-saver": "^2.0.7",
"@types/geojson": "^7946.0.16",
"@types/html-to-text": "^9.0.4",
"@types/json-schema": "^7.0.15",
"@types/mapbox__polyline": "^1.0.5",
"@types/papaparse": "^5.3.15",
"@types/pg": "^8.11.11",
"@types/uuid": "^10.0.0",
"chart.js": "^4.5.1",
"colord": "^2.9.3",
"console-stamp": "^3.1.2",
"countries-list": "^3.1.1",
"d3": "^7.9.0",
"date-fns": "^4.1.0",
"dotenv": "^16.5.0",
"file-saver": "^2.0.5",
"file-type": "^21.0.0",
"firebase-admin": "^13.3.0",
"geojson": "^0.5.0",
"html-to-text": "^9.0.5",
"jsonschema": "^1.5.0",
"kysely": "^0.27.5",
"kysely-ctl": "^0.11.0",
"maplibre-gl": "^5.0.1",
"nodemailer": "^6.10.1",
"papaparse": "^5.5.3",
"pg": "^8.13.1",
"polyline": "^0.2.0",
"prom-client": "^15.1.3",
"qrcode": "^1.5.4",
"sharp": "^0.34.4",
"svelte-qrcode": "^1.0.1",
"uuid": "^11.0.5",
"vite-node": "^3.1.3"
}
}