-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.38 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.38 KB
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
74
75
76
77
78
79
80
{
"name": "dotfyle",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node build/index.js",
"dev": "vite dev",
"build": "npx prisma migrate deploy && npx prisma generate && 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",
"test": "vitest --run",
"test:unit": "vitest",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"prepare": "husky"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@skeletonlabs/skeleton": "^1.12.0",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/adapter-node": "^2.1.2",
"@sveltejs/kit": "^2.55.0",
"@sveltejs/vite-plugin-svelte": "^4.0.4",
"@types/jsonwebtoken": "^9.0.10",
"@types/marked": "^4.3.2",
"@types/nprogress": "^0.2.3",
"@types/rss": "^0.0.30",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@zerodevx/svelte-toast": "^0.9.6",
"autoprefixer": "^10.4.27",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.2",
"eslint-plugin-svelte": "^2.46.1",
"highlight.js": "^11.11.1",
"husky": "^9.1.7",
"marked": "^4.3.0",
"nprogress": "^0.2.0",
"postcss": "^8.5.8",
"postcss-load-config": "^4.0.2",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.1",
"prisma": "^4.16.2",
"rehype-parse": "^8.0.5",
"rehype-sanitize": "^5.0.1",
"rehype-stringify": "^9.0.4",
"svelte": "^5.55.0",
"svelte-check": "^4.4.5",
"svelte-highlight": "^7.9.0",
"tailwindcss": "^3.4.19",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"unified": "^10.1.2",
"vite": "^5.4.21",
"vitest": "^1.6.1"
},
"engines": {
"node": ">=20"
},
"type": "module",
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@octokit/rest": "^19.0.13",
"@prisma/client": "^4.16.2",
"@trpc/client": "^10.45.4",
"@trpc/server": "^10.45.4",
"delay": "^5.0.0",
"jsonwebtoken": "^9.0.3",
"nanoid": "^5.1.7",
"openai": "^4.104.0",
"p-limit": "^6.2.0",
"rss": "^1.2.2",
"svelte-fa": "^4.0.4",
"trpc-sveltekit": "^3.6.3",
"zod": "^3.25.76"
}
}