-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.71 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
{
"name": "fiesta",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"generate-pwa-assets": "pwa-assets-generator --preset minimal static/icons/logo.svg"
},
"devDependencies": {
"@skeletonlabs/skeleton": "^2.1.0",
"@skeletonlabs/tw-plugin": "^0.2.0",
"@sveltejs/adapter-auto": "^2.1.0",
"@sveltejs/kit": "^1.25.0",
"@types/bcryptjs": "^2.4.3",
"@types/jsonwebtoken": "^9.0.3",
"@types/node": "^20.6.0",
"@types/pg": "^8.10.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vite-pwa/assets-generator": "^0.0.10",
"@vite-pwa/sveltekit": "^0.2.7",
"autoprefixer": "^10.4.15",
"dotenv": "^16.3.1",
"drizzle-kit": "^0.19.13",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.33.1",
"postcss": "^8.4.29",
"postcss-load-config": "^4.0.1",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"svelte": "^4.2.0",
"svelte-check": "^3.5.1",
"tailwindcss": "^3.3.3",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-tailwind-purgecss": "^0.1.3"
},
"type": "module",
"dependencies": {
"bcryptjs": "^2.4.3",
"drizzle-orm": "^0.28.6",
"joi": "^17.10.1",
"jsonwebtoken": "^9.0.2",
"material-symbols": "^0.12.0",
"pg": "^8.11.3",
"sharp": "^0.32.6",
"short-uuid": "^4.2.2"
}
}