-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.22 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
{
"name": "reservation-web",
"version": "0.3.1",
"description": "The web interface for the Reservation API, implemented with Svelte.",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint:svelte-check": "svelte-check",
"lint:eslint": "eslint --ext .js,.svelte src/",
"lint:prettier": "prettier -c .",
"lint:prettier:fix": "prettier -w .",
"lint": "npm run lint:svelte-check && npm run lint:eslint && npm run lint:prettier"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coredump-ch/reservation-web.git"
},
"author": "Danilo Bargen <[email protected]> (https://dbrgn.ch/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/coredump-ch/reservation-web/issues"
},
"homepage": "https://github.com/coredump-ch/reservation-web#readme",
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"eslint": "^8.57.1",
"eslint-plugin-svelte": "^2.46.0",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"svelte": "^4",
"svelte-check": "^4.0.5",
"vite": "^5.4.10"
},
"dependencies": {
"luxon": "^3.5.0"
}
}