-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.28 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.28 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
{
"name": "gemmology.dev",
"type": "module",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"sync": "tsx scripts/sync-knowledge.ts",
"dev": "npm run sync && astro dev",
"build": "astro build",
"preview": "astro preview",
"copy-db": "node scripts/copy-database.js",
"prerender": "node scripts/prerender-crystals.js",
"check-svgs": "node scripts/audit-crystal-svgs.mjs",
"prebuild": "npm run sync && npm run copy-db && npm run check-svgs",
"generate-og": "npm run build && node scripts/generate-og-image.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"question:new": "node scripts/new-question.mjs",
"validate:questions": "node scripts/validate-questions.mjs",
"questions:coverage": "node scripts/questions-coverage.mjs",
"schema:questions": "node scripts/generate-question-schema.mjs",
"validate:citations": "node scripts/validate-citations.mjs"
},
"dependencies": {
"@astrojs/node": "^9.5.2",
"@astrojs/react": "^4.1.0",
"@astrojs/sitemap": "^3.7.0",
"@astrojs/tailwind": "^5.1.0",
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@gemmology/mineral-data": "^2.3.0",
"@monaco-editor/react": "^4.6.0",
"@react-three/drei": "^9.105.0",
"@react-three/fiber": "^8.16.0",
"@tailwindcss/typography": "^0.5.19",
"astro": "^5.16.11",
"astro-expressive-code": "^0.41.6",
"clsx": "^2.1.0",
"dompurify": "^3.3.1",
"lucide-react": "^1.14.0",
"marked": "^15.0.0",
"monaco-editor": "^0.52.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"sql.js": "^1.11.0",
"tailwind-merge": "^2.5.0",
"three": "^0.164.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/dompurify": "^3.0.5",
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/three": "^0.164.0",
"@vitest/coverage-v8": "^4.1.5",
"autoprefixer": "^10.4.20",
"jsdom": "^29.1.1",
"playwright": "^1.58.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.15",
"tsx": "^4.0.0",
"typescript": "^5.6.0",
"vitest": "^4.1.5"
}
}