-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.87 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.87 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
{
"name": "worldview-quiz",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev -p 1776",
"dev:lan": "next dev -H 0.0.0.0 -p 1776",
"dev:mobile": "bash scripts/dev-mobile.sh",
"build": "prisma generate && next build",
"start": "next start -p 1776",
"start:lan": "next start -H 0.0.0.0 -p 1776",
"lint": "next lint",
"db:push": "prisma db push",
"db:seed": "npx tsx prisma/seed.ts",
"db:studio": "prisma studio",
"db:reset": "prisma db push --force-reset && npx tsx prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^5.7.1",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@types/cytoscape": "^3.21.9",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cytoscape": "^3.33.1",
"cytoscape-cose-bilkent": "^4.1.0",
"d3": "^7.9.0",
"framer-motion": "^10.16.16",
"lucide-react": "^0.303.0",
"next": "^14.2.35",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^2.10.3",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/d3": "^7.4.3",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@types/uuid": "^9.0.7",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.32",
"prisma": "^5.7.1",
"tailwindcss": "^3.4.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}