forked from dangduyminh109/algorithm-design-analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.44 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.44 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
{
"name": "algorithm-complexity-visualizer",
"version": "0.1.0",
"description": "Interactive algorithm complexity visualizer with dynamic animations for sorting, searching, and extreme value algorithms",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:optimized": "./build-optimized.sh",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"export": "next export",
"deploy": "npm run build && npm run export",
"vercel-build": "next build",
"check": "npm run lint && npm run build",
"clean": "rm -rf .next out node_modules/.cache",
"analyze": "cross-env ANALYZE=true npm run build",
"perf": "npm run build:optimized && npm run start"
},
"dependencies": {
"@types/animejs": "^3.1.13",
"@types/katex": "^0.16.7",
"animejs": "^4.1.3",
"framer-motion": "^11.18.2",
"katex": "^0.16.22",
"lucide-react": "^0.427.0",
"next": "14.2.5",
"prismjs": "^1.29.0",
"react": "^18",
"react-dom": "^18",
"react-intersection-observer": "^9.16.0",
"react-virtualized-auto-sizer": "^1.0.26",
"recharts": "^3.2.1"
},
"devDependencies": {
"@types/node": "^20",
"@types/prismjs": "^1.26.4",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.21",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}