bump
Browse files- frontend/package-lock.json +0 -0
- frontend/package.json +19 -17
- frontend/svelte.config.js +2 -1
frontend/package-lock.json
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
frontend/package.json
CHANGED
@@ -12,30 +12,32 @@
|
|
12 |
"format": "prettier --write ."
|
13 |
},
|
14 |
"devDependencies": {
|
15 |
-
"@sveltejs/adapter-auto": "^
|
16 |
-
"@sveltejs/
|
17 |
-
"@sveltejs/
|
18 |
-
"@
|
19 |
-
"@typescript-eslint/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
"autoprefixer": "^10.4.16",
|
21 |
-
"eslint": "^8.28.0",
|
22 |
-
"eslint-config-prettier": "^9.0.0",
|
23 |
-
"eslint-plugin-svelte": "^2.30.0",
|
24 |
"postcss": "^8.4.31",
|
25 |
-
"prettier": "^3.1.0",
|
26 |
"prettier-plugin-organize-imports": "^3.2.4",
|
27 |
-
"prettier-plugin-svelte": "^3.1.0",
|
28 |
"prettier-plugin-tailwindcss": "^0.5.7",
|
29 |
-
"
|
30 |
-
"svelte-check": "^3.4.3",
|
31 |
-
"tailwindcss": "^3.3.5",
|
32 |
-
"tslib": "^2.4.1",
|
33 |
-
"typescript": "^5.0.0",
|
34 |
-
"vite": "^4.4.2"
|
35 |
},
|
36 |
"type": "module",
|
37 |
"dependencies": {
|
38 |
"piexifjs": "^1.0.6",
|
39 |
"rvfc-polyfill": "^1.0.7"
|
40 |
}
|
41 |
-
}
|
|
|
12 |
"format": "prettier --write ."
|
13 |
},
|
14 |
"devDependencies": {
|
15 |
+
"@sveltejs/adapter-auto": "^3.0.0",
|
16 |
+
"@sveltejs/kit": "^2.0.0",
|
17 |
+
"@sveltejs/vite-plugin-svelte": "^3.0.0",
|
18 |
+
"@types/eslint": "^8.56.0",
|
19 |
+
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
20 |
+
"@typescript-eslint/parser": "^7.0.0",
|
21 |
+
"eslint": "^8.56.0",
|
22 |
+
"eslint-config-prettier": "^9.1.0",
|
23 |
+
"eslint-plugin-svelte": "^2.35.1",
|
24 |
+
"prettier": "^3.1.1",
|
25 |
+
"prettier-plugin-svelte": "^3.1.2",
|
26 |
+
"svelte": "^4.2.7",
|
27 |
+
"svelte-check": "^3.6.0",
|
28 |
+
"tslib": "^2.4.1",
|
29 |
+
"typescript": "^5.0.0",
|
30 |
+
"vite": "^5.0.3",
|
31 |
+
"@sveltejs/adapter-static": "^3",
|
32 |
"autoprefixer": "^10.4.16",
|
|
|
|
|
|
|
33 |
"postcss": "^8.4.31",
|
|
|
34 |
"prettier-plugin-organize-imports": "^3.2.4",
|
|
|
35 |
"prettier-plugin-tailwindcss": "^0.5.7",
|
36 |
+
"tailwindcss": "^3.3.5"
|
|
|
|
|
|
|
|
|
|
|
37 |
},
|
38 |
"type": "module",
|
39 |
"dependencies": {
|
40 |
"piexifjs": "^1.0.6",
|
41 |
"rvfc-polyfill": "^1.0.7"
|
42 |
}
|
43 |
+
}
|
frontend/svelte.config.js
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
import adapter from '@sveltejs/adapter-static';
|
2 |
-
import { vitePreprocess } from '@sveltejs/
|
|
|
3 |
/** @type {import('@sveltejs/kit').Config} */
|
4 |
const config = {
|
5 |
preprocess: vitePreprocess({ postcss: true }),
|
|
|
1 |
import adapter from '@sveltejs/adapter-static';
|
2 |
+
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
3 |
+
|
4 |
/** @type {import('@sveltejs/kit').Config} */
|
5 |
const config = {
|
6 |
preprocess: vitePreprocess({ postcss: true }),
|