-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.75 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
{
"name": "simmer",
"private": true,
"version": "0.0.1",
"packageManager": "pnpm@10.30.3",
"type": "module",
"scripts": {
"setup:python": "python3 -m pip install -r requirements.txt",
"dev": "vite",
"dev:api": "vercel dev --yes -A vercel.api.json --listen 5174",
"dev:full": "pnpm dev:api & wait-on http://localhost:5174 && pnpm dev",
"dev:browser": "pnpm dev:api & pnpm dev & wait-on http://localhost:5173 && ./scripts/launch-chrome-beta.sh",
"dev:browser:fresh": "pnpm dev:api & pnpm dev & wait-on http://localhost:5173 && ./scripts/launch-chrome-beta.sh --fresh",
"dev:browser:codex": "pnpm dev:api & pnpm dev & wait-on http://localhost:5173 && ./scripts/launch-chrome-beta.sh --profile-dir=/tmp/chrome-codex",
"dev:browser:brave": "pnpm dev:api & pnpm dev & wait-on http://localhost:5173 && .\\scripts\\launch-brave.bat",
"dev:browser:brave:fresh": "pnpm dev:api & pnpm dev & wait-on http://localhost:5173 && .\\scripts\\launch-brave.bat --fresh",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint . && stylelint '**/*.css'",
"lint:fix": "eslint . --fix && stylelint '**/*.css' --fix && prettier --write '**/*.{ts,tsx,css,json}'",
"lint:py": "ruff check api/ scripts/",
"lint:py:fix": "ruff check --fix api/ scripts/ && ruff format api/ scripts/",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky"
},
"dependencies": {
"@base-ui/react": "^1.2.0",
"@fontsource-variable/geist": "^5.2.8",
"@mozilla/readability": "^0.6.0",
"@radix-ui/react-slider": "^1.3.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"idb": "^8.0.0",
"lucide-react": "^0.577.0",
"openai": "^4.85.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.2.0",
"shadcn": "^4.0.0",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"zod": "^3.24.0"
},
"pnpm": {
"overrides": {
"serialize-javascript": ">=7.0.3"
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.2.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vercel/node": "^5.6.9",
"@vercel/python": "^6.20.2",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"postcss": "^8.5.1",
"postcss-html": "^1.8.1",
"prettier": "^3.8.1",
"stylelint": "^17.4.0",
"stylelint-config-standard": "^40.0.0",
"tailwindcss": "^3.4.17",
"typescript": "~5.7.2",
"typescript-eslint": "^8.56.1",
"vercel": "^50.28.0",
"vite": "^6.2.0",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.0.18",
"wait-on": "^9.0.4"
}
}