-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 956 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 956 Bytes
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
{
"name": "algorithm-visualizer",
"version": "0.1.0",
"private": true,
"overrides": {
"brace-expansion": "5.0.8",
"postcss": "8.5.23",
"sharp": "0.35.3"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"lucide-react": "^0.468.0",
"next": "^15.5.22",
"react": "19.1.0",
"react-dom": "19.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@tailwindcss/postcss": "^4.1.0",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitest/coverage-v8": "^3.2.0",
"eslint": "^9.0.0",
"eslint-config-next": "^15.5.22",
"jsdom": "^29.1.1",
"tailwindcss": "^4.1.0",
"typescript": "^5.7.0",
"vitest": "^3.2.0"
}
}