forked from sinamics/ztnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.13 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
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
{
"name": "ztnet",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "WATCHPACK_POLLING=false next dev",
"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 --config jest.pages.config.ts && jest --config jest.api.config.ts",
"test": "jest --config jest.pages.config.ts && jest --config jest.api.config.ts --ci --coverage",
"studio": "prisma studio"
},
"dependencies": {
"@codemirror/lang-python": "^6.1.3",
"@codemirror/language-data": "^6.3.1",
"@faker-js/faker": "^8.0.2",
"@heroicons/react": "^2.0.16",
"@next-auth/prisma-adapter": "^1.0.5",
"@paralleldrive/cuid2": "^2.2.2",
"@prisma/client": "^5.1.1",
"@tanstack/react-query": "^4.20.2",
"@tanstack/react-query-devtools": "^4.28.0",
"@tanstack/react-table": "^8.9.3",
"@trpc/client": "^10.37.1",
"@trpc/next": "^10.37.1",
"@trpc/react-query": "^10.37.1",
"@trpc/server": "^10.37.1",
"@types/socket.io-client": "^3.0.0",
"@uiw/codemirror-extensions-classname": "^4.21.7",
"@uiw/codemirror-theme-okaidia": "^4.21.7",
"@uiw/react-codemirror": "^4.21.7",
"archiver": "^6.0.0",
"axios": "^1.3.4",
"bcryptjs": "^2.4.3",
"classnames": "^2.3.2",
"cron": "^3.1.5",
"ejs": "^3.1.9",
"formidable": "^3.5.0",
"ip-address": "^8.1.0",
"jsonwebtoken": "^9.0.1",
"lru-cache": "^10.0.1",
"next": "14.0.3",
"next-auth": "4.24.5",
"next-intl": "3.1.4",
"next-themes": "^0.2.1",
"nodemailer": "^6.9.4",
"pug": "^3.0.2",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-datepicker": "^4.21.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.0",
"react-timeago": "^7.1.0",
"sharp": "0.32.4",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2",
"superjson": "1.9.1",
"unique-names-generator": "^4.7.1",
"unzipper": "^0.10.14",
"usehooks-ts": "^2.9.1",
"zod": "^3.22.3",
"zustand": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/archiver": "^5.3.2",
"@types/bcryptjs": "^2.4.2",
"@types/ejs": "^3.1.2",
"@types/formidable": "^3.4.1",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/lru-cache": "^7.10.10",
"@types/node": "^18.17.5",
"@types/nodemailer": "^6.4.8",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/testing-library__jest-dom": "^5.14.5",
"@types/unzipper": "^0.10.6",
"autoprefixer": "^10.4.7",
"daisyui": "4.4.24",
"dotenv": "^16.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-mock-extended": "^3.0.4",
"jest-module-name-mapper": "^0.1.5",
"postcss": "^8.4.31",
"prisma": "^5.1.1",
"tailwindcss": "^3.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"type-fest": "^4.2.0",
"typescript": "5.3.2"
},
"ct3aMetadata": {
"initVersion": "7.8.0"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}