-
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.29 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.29 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": "bangs.fast",
"private": true,
"version": "0.1.0",
"description": "bangs.fast - local bang redirects",
"license": "MIT",
"homepage": "https://bangs.fast",
"repository": {
"type": "git",
"url": "https://github.com/kristianvld/bangs.fast.git"
},
"packageManager": "bun@1.3.10",
"type": "module",
"scripts": {
"dev": "vite",
"typecheck": "tsc -b --pretty false",
"lint": "bun run typecheck",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "bun run test:e2e",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:install": "playwright install --with-deps chromium",
"sync-bang-datasets": "bun ./scripts/sync-bang-datasets.mjs"
},
"devDependencies": {
"@playwright/test": "1.58.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"autoprefixer": "^10.4.27",
"postcss": "^8.5.8",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"vite-plugin-pwa": "^1.2.0"
},
"dependencies": {
"clsx": "^2.1.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-feather": "^2.0.10",
"tailwind-merge": "^3.5.0"
},
"overrides": {
"serialize-javascript": "^7.0.4"
}
}