-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.5 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.5 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
{
"name": "docs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"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": "echo \"No tests specified\" && exit 0",
"test:watch": "echo \"No tests specified\" && exit 0",
"audit": "npm audit --audit-level=moderate",
"update-deps": "npm update && npm audit fix"
},
"dependencies": {
"@react-three/drei": "^10.7.6",
"@react-three/fiber": "^9.4.0",
"@theguild/remark-mermaid": "^0.3.0",
"dotenv": "^17.2.3",
"framer-motion": "^12.23.22",
"lucide-react": "^0.545.0",
"mermaid": "^11.12.1",
"next": "^15.5.9",
"next-intl": "^4.3.12",
"next-themes": "^0.4.6",
"nextra": "^4.6.1",
"postmark": "^4.0.5",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"three": "^0.180.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/three": "^0.180.0",
"eslint": "^9",
"eslint-config-next": "15.3.6",
"prettier": "^3.6.2",
"tailwindcss": "^4",
"typescript": "^5",
"wink-eng-lite-web-model": "^1.8.1",
"wink-nlp": "^2.4.0"
}
}