-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.73 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "animation-website",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook:dev": "storybook dev -p 6006 -s public",
"storybook:stop": "fkill --port 6006",
"build-storybook": "storybook build -o .storybook-static",
"test": "jest --coverage",
"test:watch": "jest --watch",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"lhci": "lhci autorun",
"generate:network-topic": "node scripts/generate-network-topic.js"
},
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@heroicons/react": "^2.2.0",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/mdx": "^15.2.4",
"@react-three/drei": "^10.0.5",
"@react-three/fiber": "^9.1.1",
"@types/node": "^22.14.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.1",
"@types/three": "^0.175.0",
"animejs": "^3.2.1",
"chart.js": "^4.4.8",
"cytoscape": "^3.26.2",
"d3": "^7.0.0",
"eslint": "^9.24.0",
"eslint-config-next": "^15.2.4",
"framer-motion": "^12.6.3",
"mathjs": "^14.4.0",
"next": "^15.2.4",
"next-themes": "^0.4.6",
"p5": "^1.6.0",
"react": "^19.1.0",
"react-chartjs-2": "^5.3.0",
"react-dom": "^19.1.0",
"react-spring": "^9.6.1",
"three": "^0.175.0",
"typescript": "^5.8.3",
"vis-network": "^9.1.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.21.0",
"@babel/preset-react": "^7.21.0",
"@babel/preset-typescript": "^7.21.0",
"@lhci/cli": "^0.11.0",
"@storybook/addon-essentials": "^7.0.0",
"@storybook/addon-interactions": "^7.0.0",
"@storybook/react": "^7.0.0",
"@storybook/testing-library": "^0.1.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.0.0",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"autoprefixer": "^10.4.14",
"babel-jest": "^29.0.0",
"babel-loader": "^8.2.5",
"cypress": "^12.0.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"fkill-cli": "^6.1.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.0.0"
}
}