-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.18 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.18 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
{
"name": "collaboard",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "tsx server.ts",
"build": "next build",
"start": "NODE_ENV=production tsx server.ts",
"lint": "next lint",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage",
"test:update": "jest --updateSnapshot"
},
"dependencies": {
"@automerge/automerge": "2.2.8",
"@automerge/automerge-repo": "1.1.12",
"@automerge/automerge-repo-network-websocket": "^1.2.1",
"@automerge/automerge-repo-react-hooks": "1.1.12",
"@automerge/automerge-repo-storage-indexeddb": "1.1.12",
"@heroicons/react": "^2.1.5",
"@hookform/resolvers": "^3.10.0",
"@kessl/next-flash": "^1.0.3",
"@prisma/client": "^5.18.0",
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-collapsible": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "^1.1.8",
"add": "^2.0.6",
"bcryptjs": "^2.4.3",
"canvas": "^3.0.0-rc3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"dexie": "^4.0.11",
"dotenv": "^16.4.7",
"konva": "^9.3.15",
"lodash": "^4.17.21",
"lucide-react": "^0.487.0",
"mailslurp-client": "^15.21.0",
"migrate": "^2.1.0",
"mongodb": "6.8",
"mongoose": "^8.5.2",
"next": "12.3.4",
"next-auth": "^4.24.11",
"nodemailer": "^6.10.0",
"or": "^0.2.0",
"prisma": "^6.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.2",
"react-hot-toast": "^2.5.2",
"react-icons": "^5.3.0",
"react-konva": "^18.2.10",
"sonner": "^1.7.4",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"uuid": "^10.0.0",
"ws": "^8.18.0",
"yarn": "^1.22.22",
"zod": "^3.24.1"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/bcryptjs": "^2.4.6",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.15",
"@types/node": "^20",
"@types/nodemailer": "^6.4.17",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.14",
"autoprefixer": "^10.4.14",
"babel-jest": "^29.7.0",
"eslint": "8.15.0",
"eslint-config-next": "12.3.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock": "^29.7.0",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7",
"typescript": "^5"
},
"overrides": {
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}