-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.2 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.2 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
{
"name": "pathfinding-visualizer",
"version": "0.1.0",
"private": true,
"scripts": {
"fastapi-dev": "python3 -m uvicorn api.index:app --reload",
"fastapi-dev-windows": "python -m uvicorn api.index:app --reload --reload-dir api",
"next-dev": "next dev",
"dev": "concurrently \"pnpm run fastapi-dev\" \"pnpm run next-dev\"",
"dev-windows": "concurrently \"pnpm run fastapi-dev-windows\" \"pnpm run next-dev\"",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "node -e \"require('child_process').execSync(process.platform === 'win32' ? 'pnpm run python-install-windows' : 'pnpm run python-install', {stdio:'inherit'})\"",
"python-install": "if [ -d 'venv' ]; then echo 'venv already exists'; else python3 -m venv venv && . venv/bin/activate; fi; pip3 install -r requirements.txt;",
"python-install-windows": "IF EXIST 'venv' (echo venv already exists) ELSE (python -m venv venv & . venv\\Scripts\\activate) & pip install -r requirements.txt",
"test-python": "pytest",
"test-ui": "cypress run -- --spec --record",
"cypress:open": "cypress open",
"format": "prettier --write ."
},
"dependencies": {
"@hookform/resolvers": "^3.3.1",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.4",
"@types/node": "20.4.4",
"@types/react": "18.2.16",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.14",
"axios": "^1.5.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^0.2.0",
"concurrently": "^8.2.1",
"eslint": "8.45.0",
"eslint-config-next": "13.4.12",
"lucide-react": "^0.263.1",
"next": "13.4.12",
"postcss": "8.4.27",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.46.1",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.6",
"typescript": "5.1.6",
"typewriter-effect": "^2.21.0",
"zod": "^3.22.2",
"zustand": "^4.4.1"
},
"devDependencies": {
"cypress": "^13.3.0",
"prettier": "3.0.3"
}
}