-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.16 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
{
"name": "algorithm-visualizer",
"homepage": "https://jacquelineadean.github.io/AlgorithmVisualizer/",
"version": "0.2.0",
"private": true,
"type": "module",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:run": "vitest run",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@mdx-js/rollup": "^3.1.1",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.6.1",
"katex": "^0.18.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-router-dom": "^7.18.1",
"three": "^0.185.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-react": "^6.0.3",
"gh-pages": "^6.3.0",
"jsdom": "^29.1.1",
"vite": "^8.1.3",
"vitest": "^4.1.9"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}