-
Notifications
You must be signed in to change notification settings - Fork 274
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.59 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
{
"name": "beautiful-web-type",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@10.10.0",
"scripts": {
"audit:security": "osv-scanner scan source --lockfile=pnpm-lock.yaml --verbosity=error",
"audit:typefaces": "tsx scripts/audit-typefaces.ts",
"build:legacy-css": "tsx scripts/build-legacy-css.ts",
"prepare:static": "pnpm build:legacy-css && tsx scripts/prepare-static.ts",
"predev": "pnpm prepare:static",
"dev": "next dev",
"prebuild": "pnpm prepare:static",
"build": "next build",
"postbuild": "tsx scripts/verify-export.ts",
"start": "serve out -l 3000",
"test": "pnpm test:unit && pnpm test:e2e",
"test:unit": "vitest run",
"test:e2e": "pnpm build && env -u NO_COLOR playwright test"
},
"dependencies": {
"@vercel/analytics": "^2.0.1",
"clsx": "^2.1.1",
"js-yaml": "^4.2.0",
"next": "^16.2.6",
"react": "^19.2.6",
"react-dom": "^19.2.6"
},
"devDependencies": {
"@playwright/test": "^1.51.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.13.5",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.20",
"playwright": "^1.51.1",
"postcss": "^8.5.14",
"postcss-import": "^16.1.1",
"serve": "^14.2.4",
"tailwindcss": "^3.4.17",
"tsx": "^4.22.4",
"typescript": "^5.8.2",
"vite": "^7.3.5",
"vitest": "^4.1.8"
},
"pnpm": {
"overrides": {
"brace-expansion": "^1.1.13",
"fast-uri": "~3.1.1",
"picomatch": "^4.0.4",
"postcss": "^8.5.14",
"vite": "^7.3.5",
"esbuild": "~0.28.1"
}
}
}