-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.34 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": "visualstudio-site",
"version": "1.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",
"@formspree/react": "^3.0.0",
"@hookform/resolvers": "^5.2.2",
"@prisma/adapter-better-sqlite3": "^7.6.0",
"@prisma/client": "^6.19.2",
"@tiptap/extension-blockquote": "^3.22.2",
"@tiptap/extension-bold": "^3.22.2",
"@tiptap/extension-bullet-list": "^3.22.2",
"@tiptap/extension-code-block-lowlight": "^3.22.2",
"@tiptap/extension-heading": "^3.22.2",
"@tiptap/extension-horizontal-rule": "^3.22.2",
"@tiptap/extension-image": "^3.22.2",
"@tiptap/extension-italic": "^3.22.2",
"@tiptap/extension-link": "^3.22.2",
"@tiptap/extension-ordered-list": "^3.22.2",
"@tiptap/extension-placeholder": "^3.22.2",
"@tiptap/extension-typography": "^3.22.2",
"@tiptap/pm": "^3.22.2",
"@tiptap/react": "^3.22.2",
"@tiptap/starter-kit": "^3.22.2",
"bcryptjs": "^3.0.3",
"better-sqlite3": "^12.8.0",
"gsap": "^3.13.0",
"imagesloaded": "^5.0.0",
"isotope-layout": "^3.0.6",
"lenis": "^1.3.11",
"lowlight": "^3.3.0",
"marked": "^18.0.0",
"next": "^16.2.2",
"next-auth": "^5.0.0-beta.30",
"prisma": "^6.19.2",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-modal": "^3.16.3",
"react-player": "^3.3.3",
"react-toastify": "^11.0.5",
"split-type": "^0.3.4",
"swiper": "^12.0.2",
"typed.js": "^2.1.0",
"ukiyojs": "^4.2.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/bcryptjs": "^2.4.6",
"@types/better-sqlite3": "^7.6.13",
"@types/imagesloaded": "^4.1.7",
"@types/isotope-layout": "^3.0.15",
"@types/node": "^20",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@types/react-modal": "^3.16.3",
"eslint": "^9",
"eslint-config-next": "16.0.1",
"purgecss": "^8.0.0",
"ts-node": "^10.9.2",
"typescript": "^5",
"vitest": "^4.1.2"
},
"prisma": {
"seed": "npx ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"overrides": {
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2"
}
}