-
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.64 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.64 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": "mind-protocol",
"version": "2.0.0",
"description": "Consciousness substrate visualization and interaction platform",
"private": true,
"engines": {
"node": "22.x",
"npm": ">=10.0.0"
},
"scripts": {
"dev": "next dev -p 3000",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"favicons": "node tools/generate_png_favicons.mjs",
"logos": "node tools/export_high_fidelity_logos.mjs"
},
"dependencies": {
"@react-three/drei": "^10.7.6",
"@react-three/fiber": "^9.4.0",
"@types/d3": "^7.4.3",
"critters": "^0.0.25",
"d3": "^7.9.0",
"entities": "6.0.1",
"html2canvas": "^1.4.1",
"lucide-react": "^0.548.0",
"next": "^15.0.0",
"pixi.js": "^7.4.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"redis": "^4.7.0",
"remark-gfm": "^4.0.1",
"reselect": "^5.1.1",
"three": "^0.181.0"
},
"overrides": {
"htmlparser2": "^10.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/html2canvas": "^0.5.35",
"@types/jest": "^30.0.0",
"@types/node": "^20.10.0",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.16",
"eslint": "^8.55.0",
"eslint-config-next": "^15.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"postcss": "^8.4.32",
"sharp": "^0.34.4",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.0"
}
}