generated from BastiDood/sveltekit-tailwind-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.69 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "spectro",
"version": "0.0.0",
"type": "module",
"private": true,
"packageManager": "[email protected]+sha512.93e57b0126f0df74ce6bff29680394c0ba54ec47246b9cf321f0121d8d9bb03f750a705f24edc3c1180853afd7c2c3b94196d0a3d53d3e069d9e2793ef11f321",
"scripts": {
"env:dev": "dotenv -e .env.development --",
"env:prod": "dotenv -e .env.production --",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"sync": "svelte-kit sync",
"fmt": "prettier --check --cache .",
"fmt:fix": "prettier --write --cache .",
"lint": "pnpm run --parallel /lint:/",
"lint:html": "linthtml src/**/*.html",
"lint:css": "stylelint src/**/*.css",
"lint:js": "eslint --cache",
"lint:svelte": "svelte-check --tsconfig ./tsconfig.json",
"discord:register": "node scripts/register-slash-commands.js"
},
"dependencies": {
"@axiomhq/pino": "^1.3.1",
"@iconify/icons-ic": "^1.2.13",
"@iconify/icons-simple-icons": "^1.2.74",
"@iconify/svelte": "^4.1.0",
"@noble/ed25519": "^2.1.0",
"@sveltejs/kit": "^2.15.1",
"drizzle-orm": "^0.38.3",
"pg": "^8.13.1",
"pino": "^9.6.0",
"svelte": "^5.16.0",
"valibot": "1.0.0-beta.9"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@linthtml/linthtml": "^0.10.1",
"@linthtml/linthtml-config-recommended": "^0.1.0",
"@sveltejs/adapter-node": "^5.2.11",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^22.10.3",
"@types/pg": "^8.11.10",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.23",
"dotenv-cli": "^8.0.0",
"drizzle-kit": "^0.30.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^15.14.0",
"pino-pretty": "^13.0.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-tailwindcss": "^0.0.7",
"svelte-check": "^4.1.1",
"svelte-eslint-parser": "^0.43.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"typescript-svelte-plugin": "^0.3.45",
"vite": "^6.0.6",
"vite-plugin-tailwind-purgecss": "^0.3.5"
}
}