-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 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
{
"name": "borderlens",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "next start",
"dev": "clear && pnpm database --quiet && pnpm playground:sync && open-cli https://dev.borderlens.tools:3000 && next dev --experimental-https --experimental-https-key .certs/key.pem --experimental-https-cert .certs/cert.pem",
"build": "pnpm playground:sync && pnpm database && next build",
"database": "tsx scripts/validate-items.ts && tsx scripts/bundle-items.ts",
"playground:sync": "tsx scripts/playground/sync.ts",
"playground:watch": "tsx scripts/playground/watch.ts",
"lint": "eslint"
},
"dependencies": {
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"clsx": "^2.1.1",
"fuse.js": "^7.3.0",
"next": "^16.2.5",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-icons": "^5.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^25.6.0",
"@types/react": "19.2.14",
"@types/react-dom": "^19.2.3",
"concurrently": "^9.2.1",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.4",
"eslint-plugin-perfectionist": "^5.9.0",
"eslint-plugin-tsdoc": "^0.5.2",
"open-cli": "^9.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}