-
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) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.98 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": "joesimo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "PATH=/usr/local/bin:/opt/homebrew/bin:$PATH node node_modules/next/dist/bin/next dev --webpack",
"build": "PATH=/usr/local/bin:/opt/homebrew/bin:$PATH node node_modules/next/dist/bin/next build",
"start": "PATH=/usr/local/bin:/opt/homebrew/bin:$PATH node node_modules/next/dist/bin/next start",
"lint": "eslint",
"test": "bun test tests/unit",
"test:unit": "bun test tests/unit",
"check:fast": "bun run lint && bun run typecheck && bun run test && bun run build",
"test:e2e:install": "PLAYWRIGHT_BROWSERS_PATH=$HOME/.cache/ms-playwright PATH=/usr/local/bin:/opt/homebrew/bin:$PATH node node_modules/@playwright/test/cli.js install chromium",
"test:e2e": "PLAYWRIGHT_BROWSERS_PATH=$HOME/.cache/ms-playwright bun run build && PLAYWRIGHT_BROWSERS_PATH=$HOME/.cache/ms-playwright PATH=/usr/local/bin:/opt/homebrew/bin:$PATH node node_modules/@playwright/test/cli.js test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@base-ui/react": "^1.5.0",
"botid": "^1.5.11",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"geist": "^1.7.1",
"gsap": "^3.15.0",
"lucide-react": "^1.16.0",
"next": "16.2.6",
"next-themes": "^0.4.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"simple-icons": "^16.21.0",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@playwright/test": "^1.60.0",
"@tailwindcss/postcss": "^4",
"@types/bun": "^1.3.14",
"@types/node": "^20.19.41",
"@types/react": "^19.2.15",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"shadcn": "^4.8.0",
"tailwindcss": "^4",
"typescript": "^5"
},
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"sharp",
"unrs-resolver"
],
"overrides": {
"postcss": "8.5.15",
"qs": "6.15.2"
}
}