-
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.52 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.52 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": "stl-preview-slice",
"version": "0.1.0a",
"private": true,
"description": "STL preview and slice test application",
"main": "server.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migrate:dev": "npx prisma migrate dev",
"migrate:deploy": "npx prisma migrate deploy",
"prisma:generate": "npx prisma generate",
"prisma:studio": "npx prisma studio",
"seed": "node prisma/seed.js",
"create-migration": "node scripts/create-migration.js",
"reset-admin-password": "node scripts/reset-admin-password.js",
"create-admin-user": "node scripts/create-admin-user.js",
"prisma:migrate": "npx prisma migrate dev",
"prisma:seed": "npx ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@azure/storage-blob": "^12.27.0",
"@heroicons/react": "^2.1.1",
"@prisma/client": "6.5.0",
"@radix-ui/react-alert-dialog": "1.1.6",
"@radix-ui/react-checkbox": "1.1.4",
"@radix-ui/react-dialog": "1.1.6",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "2.1.2",
"@radix-ui/react-radio-group": "1.2.4",
"@radix-ui/react-scroll-area": "1.2.4",
"@radix-ui/react-select": "2.1.6",
"@radix-ui/react-slot": "1.1.2",
"@radix-ui/react-switch": "1.1.3",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-toast": "^1.2.6",
"@react-three/drei": "^9.107.0",
"@react-three/fiber": "^8.16.8",
"@tabler/icons-react": "^3.6.0",
"@types/bcryptjs": "^2.4.6",
"abort-controller": "3.0.0",
"adm-zip": "0.5.18",
"autoprefixer": "^10.4.17",
"axios": "1.8.4",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"cross-fetch": "^4.1.0",
"date-fns": "4.1.0",
"express": "^4.17.1",
"form-data": "4.0.2",
"gcode-preview": "2.18.0",
"lucide-react": "^0.487.0",
"multer": "1.4.5-lts.2",
"next": "^14.1.0",
"next-auth": "^4.24.5",
"node-fetch": "^2.7.0",
"postcss": "^8.4.35",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sonner": "2.0.3",
"tailwind-merge": "^3.1.0",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"three": "^0.165.0"
},
"devDependencies": {
"@types/adm-zip": "0.5.8",
"@types/form-data": "^2.2.1",
"@types/node": "^20.11.16",
"@types/node-fetch": "^2.6.12",
"@types/react": "^18.2.55",
"@types/three": "0.175.0",
"prisma": "6.5.0",
"typescript": "^5.3.3"
}
}