-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.51 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.51 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
{
"name": "inventory-front",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev --host 0.0.0.0",
"build": "vite build",
"preview": "vite preview",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"deploy": "docker build . -t registry.dungeons.guide/seda-inventory-front:1.0 && docker push registry.dungeons.guide/seda-inventory-front:1.0"
},
"devDependencies": {
"@prgm/sveltekit-progress-bar": "^2.0.0",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte": "^2.43.0",
"postcss": "^8.4.40",
"prettier": "^3.0.0",
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-tailwindcss": "^0.6.5",
"svelte": "^4.0.0",
"tailwindcss": "^3.4.7",
"vite": "5.2.6",
"vite-plugin-mkcert": "^1.17.6"
},
"type": "module",
"dependencies": {
"@sveltejs/adapter-static": "^3.0.0",
"@threlte/core": "^7.3.1",
"@threlte/extras": "^8.11.5",
"@threlte/gltf": "^2.0.3",
"@types/w3c-web-nfc": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"mobile-drag-drop": "^3.0.0-rc.0",
"postprocessing": "^6.36.0",
"svelte-infinite-scroll": "^2.0.1",
"svelte-portal": "^2.2.1",
"svelte-turnstile": "^0.7.1",
"three": "^0.167.1",
"typescript-eslint": "^8.1.0"
}
}