-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) 路 2.73 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) 路 2.73 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
{
"name": "crystal-index",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:Sammii-HK/crystal-index.git",
"author": "Samantha Kellow <sammii.h@icloud.com>",
"license": "MIT",
"type": "module",
"engines": {
"node": "24.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"migrate": "npx prisma migrate dev",
"test": "jest --watch",
"vercel-build": "prisma generate && next build",
"db:analyze": "tsx scripts/analyze-db-size.ts",
"db:cleanup": "tsx scripts/cleanup-db.ts",
"db:migrate-images": "tsx scripts/migrate-images-to-blob.ts",
"db:remove-binary": "tsx scripts/remove-binary-images.ts",
"test:identify": "tsx scripts/test-identification.ts",
"test:crystals": "tsx scripts/test-multiple-crystals.ts",
"test:random": "tsx scripts/test-random-crystals.ts"
},
"prisma": {
"seed": "node --loader ts-node/esm prisma/seed.ts"
},
"pnpm": {
"supportedArchitectures": {
"os": ["current", "linux"],
"cpu": ["current", "x64"]
}
},
"dependencies": {
"@ai-sdk/anthropic": "^1.2.12",
"@ai-sdk/openai": "^1.3.24",
"@auth0/auth0-react": "^2.9.0",
"@next-auth/prisma-adapter": "^1.0.3",
"@prisma/client": "^5.0.0",
"@react-three/drei": "^9.66.1",
"@react-three/fiber": "^8.13.0",
"@types/formidable": "^2.0.4",
"@types/sharp": "^0.30.0",
"@types/three": "^0.150.2",
"@vercel/blob": "^0.20.0",
"ai": "^5.0.92",
"axios": "^0.26.1",
"bulma": "^0.9.3",
"classnames": "^2.3.1",
"d3": "^4.0.0",
"d3-geo": "^3.0.1",
"formidable": "^2.0.1",
"lucide-react": "^0.577.0",
"next": "^13.4.6",
"next-auth": "^4.24.7",
"next-sitemap": "^4.1.3",
"openai": "^4.0.0",
"posthog-js": "^1.0.0",
"posthog-node": "^3.0.0",
"react": "^18.2.0",
"react-d3-library": "^1.1.8",
"react-dom": "^18.2.0",
"react-icons": "^4.3.1",
"react-responsive-carousel": "^3.2.23",
"replicate": "^0.25.0",
"sass": "^1.62.1",
"sharp": "^0.33.0",
"stripe": "^14.0.0",
"three": "^0.152.1",
"topojson": "^3.0.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^13.0.0",
"@types/node": "^20.0.0",
"@types/react": "17.0.40",
"dotenv": "^17.2.3",
"eslint": "8.11.0",
"eslint-config-next": "^13.3.1",
"jest": "^27.5.1",
"prisma": "^5.0.0",
"ts-node": "^10.7.0",
"tsx": "^4.7.0",
"typescript": "4.6.2"
},
"packageManager": "pnpm@10.12.4+sha512.5ea8b0deed94ed68691c9bad4c955492705c5eeb8a87ef86bc62c74a26b037b08ff9570f108b2e4dbd1dd1a9186fea925e527f141c648e85af45631074680184"
}