-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.8 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
{
"name": "hatid",
"version": "0.0.1",
"type": "module",
"private": true,
"packageManager": "pnpm@9.9.0+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1",
"engines": {
"node": ">=20"
},
"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",
"sync": "svelte-kit sync",
"test": "vitest run",
"test:unit": "vitest",
"lint": "prettier --check --plugin prettier-plugin-sql --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss . && eslint .",
"fmt": "prettier --write --plugin prettier-plugin-sql --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss .",
"db:init": "initdb -D data -U postgres",
"db:start": "postgres -D data",
"db:template": "psql -U postgres -f db/init.sql -1 template1",
"db:schema": "psql -U postgres -f db/tables.sql -1 template1",
"db:func": "psql -U postgres -f db/funcs.sql -1 template1",
"db:create": "createdb -U postgres",
"db:drop": "dropdb -U postgres",
"db:shell": "psql -U postgres",
"db:admin": "psql -U postgres -f db/admin.sql -1"
},
"devDependencies": {
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@krowten/svelte-heroicons": "^0.1.0",
"@skeletonlabs/skeleton": "^2.0.0",
"@skeletonlabs/tw-plugin": "^0.1.0",
"@sveltejs/adapter-node": "^1.3.1",
"@sveltejs/kit": "^1.24.0",
"@tailwindcss/forms": "^0.5.6",
"@types/autosize": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"autoprefixer": "^10.4.15",
"autosize": "^6.0.1",
"blake3": "^3.0.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.33.0",
"http-status-codes": "^2.2.0",
"postcss": "^8.4.28",
"postgres": "^3.3.5",
"prettier": "^3.0.3",
"prettier-plugin-sql": "^0.15.1",
"prettier-plugin-svelte": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.3",
"svelte": "^4.2.0",
"svelte-check": "^3.5.1",
"svelte-fa": "^3.0.4",
"tailwindcss": "^3.3.3",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-tailwind-purgecss": "^0.1.3",
"vitest": "^0.34.3",
"zod": "^3.22.2"
},
"pnpm": {
"overrides": {
"blake3-wasm": "^3.0.0",
"@c4312/blake3-internal": "^3.0.0"
}
}
}