-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.16 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
{
"name": "resume",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev:web": "vite",
"build:browser": "vite build",
"build:server": "node ./scripts/build.cjs",
"vercel-build": "npm run build:server",
"check:types": "tsc --noEmit",
"check:format": "biome format",
"check:lint": "biome lint",
"fix:format": "biome format --write",
"fix:lint": "biome lint --write",
"test:static": "run-p check:*",
"preinstall": "npx --yes only-allow pnpm",
"preupdate": "npx --yes only-allow pnpm"
},
"dependencies": {
"@react-pdf/renderer": "4.2.2",
"airtable": "0.12.2",
"date-fns": "4.1.0",
"encoding": "^0.1.13",
"react": "19.0.0",
"react-dom": "19.0.0",
"tiny-invariant": "^1.3.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "22.13.5",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@vercel/node": "5.1.9",
"@vitejs/plugin-react": "4.3.4",
"esbuild": "^0.25.0",
"npm-run-all": "^4.1.5",
"typescript": "5.7.3",
"vite": "6.2.0",
"vite-tsconfig-paths": "^5.1.4"
}
}