-
-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathpackage.json
55 lines (55 loc) · 1.75 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "my-app",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"build": "svelte-kit sync && vite build && pnpm run make:timestamp && pnpm run make:sitemap",
"build:ci": "svelte-kit sync && vite build",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"dev": "vite dev",
"format": "prettier --plugin-search-dir . --write .",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"make:sitemap": "node ./scripts/makeSitemap.js",
"make:timestamp": "node ./scripts/makeTimestamp.js",
"prepare": "svelte-kit sync",
"preview": "vite preview"
},
"dependencies": {
"dayjs": "^1.11.13",
"firebase": "^11.1.0",
"svelte": "^5.16.6",
"tw-colors": "^3.3.2"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.15.2",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"autoprefixer": "^10.4.20",
"dotenv": "^16.4.7",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.1",
"globby": "^14.0.2",
"postcss": "^8.4.49",
"postcss-load-config": "^6.0.1",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"schema-dts": "^1.1.2",
"sitemaps": "^2.0.6",
"svelte-check": "^4.1.1",
"tailwindcss": "^3.4.17",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"vite": "^6.0.7"
},
"packageManager": "[email protected]+sha512.1f79bc245a66eb0b07c5d4d83131240774642caaa86ef7d0434ab47c0d16f66b04e21e0c086eb61e62c77efc4d7f7ec071afad3796af64892fae66509173893a",
"engines": {
"node": ">=22.x",
"pnpm": ">=9.15.3"
}
}