-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.34 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
{
"name": "docs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"prebuild": "tsx scripts/sync-hive-docs.ts && tsx scripts/generate-shared-config.ts",
"build": "next build",
"start": "next start",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"lint:md": "markdownlint-cli2 \"README.md\" \"CONTRIBUTING.md\" \"docs/**/*.{md,mdx}\" \"src/**/*.{md,mdx}\"",
"sync-hive-docs": "tsx scripts/sync-hive-docs.ts",
"check-links": "tsx scripts/check-internal-links.ts",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"analyze": "ANALYZE=true npm run build",
"export": "next export",
"clean": "rm -rf .next out",
"test": "vitest run",
"test:watch": "vitest",
"audit": "npm audit --audit-level=moderate",
"update-deps": "npm update && npm audit fix"
},
"dependencies": {
"@react-three/drei": "^10.7.8",
"@react-three/fiber": "^9.7.0",
"@theguild/remark-mermaid": "^0.3.0",
"dotenv": "^17.2.3",
"framer-motion": "^13.0.0",
"lucide-react": "^1.30.0",
"mermaid": "^11.16.1",
"next": "^16.3.0",
"next-intl": "^4.13.4",
"next-themes": "^0.4.6",
"nextra": "^4.6.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"three": "^0.185.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "^10.0.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^26.2.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@types/three": "^0.185.4",
"@vitest/coverage-v8": "4.1.10",
"eslint": "^10",
"eslint-config-next": "^16.3.0",
"eslint-plugin-react": "^7.37.5",
"markdownlint": "^0.41.1",
"markdownlint-cli2": "^0.23.2",
"prettier": "^3.9.6",
"tailwindcss": "^4",
"tsx": "^4.23.11",
"typescript": "^6",
"vitest": "^4.1.10",
"wink-eng-lite-web-model": "^1.8.1",
"wink-nlp": "^2.4.0"
},
"overrides": {
"@xmldom/xmldom": ">=0.9.10",
"axios": ">=1.16.0",
"brace-expansion": "^2.0.1",
"dompurify": ">=3.4.13",
"linkify-it": ">=5.0.2",
"follow-redirects": ">=1.16.0",
"js-yaml": ">=5.2.2",
"markdown-it": ">=14.1.1",
"nanoid": ">=3.3.17",
"postcss": ">=8.5.18",
"sharp": ">=0.35.3",
"uuid": ">=11.1.1",
"minimatch": "3.1.4"
}
}