-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.69 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
{
"name": "solon",
"version": "0.1.0",
"engines": {
"node": ">=20"
},
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"design:check": "node scripts/design-system-check.js",
"verify": "npm run lint && npm run typecheck && npm run design:check && npm run test",
"test": "vitest run",
"test:e2e": "playwright test",
"test:puppeteer": "BASE_URL=${BASE_URL:-http://localhost:3000} node tests/puppeteer/smoke.mjs",
"test:puppeteer:mega": "BASE_URL=${BASE_URL:-http://localhost:3000} node tests/puppeteer/mega-menu.mjs",
"prisma:generate": "prisma generate",
"prisma:push": "prisma db push"
},
"dependencies": {
"@fleet/design-tokens": "github:catomean/design-tokens#v1.1.0",
"@noble/hashes": "2.3.0",
"@noble/secp256k1": "3.1.0",
"@prisma/adapter-pg": "^7.9.1",
"@prisma/client": "^7.9.1",
"@scure/base": "^2.3.0",
"bs58check": "^4.0.0",
"clsx": "2.1.1",
"lucide-react": "1.34.0",
"next": "16.3.2",
"next-auth": "^5.0.0-beta.32",
"pg": "^8.23.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"tailwindcss": "4.3.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@playwright/test": "1.62.1",
"@tailwindcss/postcss": "4.3.3",
"@types/node": "26.3.0",
"@types/pg": "^8.23.1",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.5",
"eslint": "10.9.1",
"eslint-config-next": "16.3.2",
"postcss": "8.5.26",
"prisma": "7.9.1",
"puppeteer": "25.8.0",
"ts-node": "10.9.2",
"tsx": "^4.23.12",
"typescript": "5.5.3",
"vitest": "^4.1.11"
}
}