-
-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.37 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.37 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "ztnet",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"build:webpack": "next build --webpack",
"dev": "WATCHPACK_POLLING=false next dev",
"dev:webpack": "WATCHPACK_POLLING=false next dev --webpack",
"postinstall": "prisma generate",
"lint": "biome check src",
"lint:fix": "biome check src --apply",
"format": "biome format src",
"format:fix": "biome format src --write",
"start": "node .next/standalone/server.js",
"test:dev": "jest --detectOpenHandles --verbose --config jest.pages.config.ts && jest --config jest.api.config.ts",
"test": "jest --config jest.pages.config.ts && jest --verbose --config jest.api.config.ts --ci --coverage",
"studio": "prisma studio"
},
"dependencies": {
"@codemirror/lang-python": "6.1.3",
"@codemirror/language-data": "6.3.1",
"@heroicons/react": "2.0.16",
"@next-auth/prisma-adapter": "1.0.7",
"@paralleldrive/cuid2": "2.2.2",
"@prisma/client": "6.19.0",
"@tanstack/react-query": "4.20.2",
"@tanstack/react-query-devtools": "4.20.2",
"@tanstack/react-table": "8.9.3",
"@trpc/client": "10.45.3",
"@trpc/next": "10.45.3",
"@trpc/react-query": "10.45.3",
"@trpc/server": "10.45.3",
"@uiw/codemirror-extensions-classname": "4.21.7",
"@uiw/codemirror-theme-okaidia": "4.21.7",
"@uiw/react-codemirror": "4.21.7",
"archiver": "7.0.1",
"axios": "1.13.5",
"bcryptjs": "2.4.3",
"classnames": "2.3.2",
"cookie": "1.1.1",
"cron": "3.1.5",
"daisyui": "4.12.10",
"ejs": "3.1.10",
"formidable": "3.5.4",
"ip-address": "8.1.0",
"jsonwebtoken": "9.0.3",
"lru-cache": "10.0.1",
"next": "16.1.7",
"next-auth": "4.24.13",
"next-intl": "4.5.8",
"next-themes": "0.4.6",
"nodemailer": "7.0.11",
"otplib": "12.0.1",
"prisma": "6.19.0",
"qrcode": "1.5.3",
"qrcode.react": "3.1.0",
"react": "18.2.0",
"react-copy-to-clipboard": "5.1.0",
"react-dom": "18.2.0",
"react-hot-toast": "2.4.0",
"react-timeago": "7.1.0",
"socket.io": "4.8.1",
"socket.io-client": "4.8.1",
"superjson": "1.9.1",
"ua-parser-js": "1.0.38",
"unique-names-generator": "4.7.1",
"unzipper": "0.12.3",
"usehooks-ts": "2.9.1",
"zod": "3.22.3",
"zustand": "4.3.6"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/archiver": "5.3.2",
"@types/bcryptjs": "2.4.2",
"@types/ejs": "3.1.2",
"@types/formidable": "3.4.1",
"@types/jest": "30.0.0",
"@types/jsonwebtoken": "9.0.3",
"@types/node": "18.17.5",
"@types/nodemailer": "6.4.8",
"@types/qrcode": "1.5.5",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/testing-library__jest-dom": "5.14.5",
"@types/ua-parser-js": "0.7.39",
"@types/unzipper": "0.10.6",
"autoprefixer": "10.4.7",
"dotenv": "16.0.3",
"jest": "30.2.0",
"jest-environment-jsdom": "30.2.0",
"jest-mock-extended": "4.0.0",
"jest-module-name-mapper": "0.1.5",
"jest-util": "30.2.0",
"postcss": "8.4.31",
"tailwindcss": "3.4.3",
"ts-jest": "29.4.6",
"ts-node": "10.9.1",
"tsx": "4.20.6",
"type-fest": "4.2.0",
"typescript": "5.4.3"
},
"ct3aMetadata": {
"initVersion": "7.8.0"
}
}