-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 2.08 KB
/
package.json
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": "eip-tools",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"update": "tsx ./scripts/getWIPEIPsFromPRs.ts && git submodule update --remote && tsx ./scripts/fetchValidEIPs.ts && tsx ./scripts/genEIPDependencyGraph.ts",
"gen-graph": "tsx ./scripts/genEIPDependencyGraph.ts"
},
"dependencies": {
"@chakra-ui/cli": "^3.2.0",
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@types/three": "^0.171.0",
"axios": "^1.7.2",
"chakra-ui-markdown-renderer": "^4.1.0",
"date-fns": "^3.6.0",
"framer-motion": "^11.0.3",
"fs": "0.0.1-security",
"mongoose": "^8.4.1",
"next": "14.1.0",
"nextjs-toploader": "^1.6.12",
"nprogress": "^0.2.0",
"openai": "^4.52.5",
"path": "^0.12.7",
"react": "^18",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18",
"react-force-graph": "^1.45.4",
"react-force-graph-2d": "^1.26.1",
"react-force-graph-3d": "^1.25.1",
"react-icons": "^5.2.1",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"remark-gfm": "^4.0.0",
"three": "^0.172.0",
"three-spritetext": "^1.9.3",
"toaster": "^0.1.2",
"typewriter-effect": "^2.21.0",
"usehooks-ts": "^3.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/d3": "^7.4.3",
"@types/node": "^20",
"@types/nprogress": "^0.2.3",
"@types/react": "^18",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18",
"@types/react-syntax-highlighter": "^15.5.13",
"dotenv": "^16.4.5",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"ts-node": "^10.9.2",
"tsx": "^4.11.0",
"typescript": "^5.3.3"
}
}