-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.36 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
74
75
76
77
78
79
80
81
{
"name": "final-project",
"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 .",
"prepare": "husky install && npx prisma generate"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^2.0.1",
"@sveltejs/kit": "^1.15.8",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.0",
"svelte": "^3.58.0",
"svelte-check": "^3.2.0",
"tslib": "^2.5.0",
"typescript": "^5.0.4",
"vite": "^4.3.2"
},
"type": "module",
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@giscus/svelte": "^3.0.0",
"@lucia-auth/adapter-prisma": "latest",
"@lucia-auth/oauth": "latest",
"@poppanator/sveltekit-svg": "^3.0.0",
"@prisma/client": "^4.13.0",
"@sveltejs/adapter-vercel": "^2.4.2",
"@types/hast": "^2.3.4",
"atropos": "^1.0.2",
"autoprefixer": "^10.4.14",
"date-fns": "^2.30.0",
"dotenv": "^16.0.3",
"front-matter": "^4.0.2",
"gray-matter": "^4.0.3",
"isomorphic-timers-promises": "^1.0.1",
"isomorphic-ws": "^5.0.0",
"lucia-auth": "latest",
"postcss": "^8.4.23",
"prisma": "^4.13.0",
"rehype": "^12.0.1",
"rehype-code-titles": "^1.2.0",
"rehype-prism-plus": "^1.5.1",
"rehype-raw": "^6.1.1",
"rehype-stringify": "^9.0.3",
"remark-autolink-headings": "^7.0.1",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"remark-slug": "^7.0.1",
"remark-smartypants": "^2.0.0",
"remark-toc": "^8.0.1",
"sass": "^1.62.1",
"svelte-fa": "^3.0.3",
"tailwindcss": "^3.3.2",
"timers": "^0.1.1",
"unified": "^10.1.2",
"unist-util-visit": "^4.1.2",
"ws": "^8.13.0",
"zod": "^3.21.4"
}
}