-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.52 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
{
"name": "json-schemer",
"private": true,
"packageManager": "pnpm@10.33.3",
"scripts": {
"prepare": "husky",
"test": "vitest run",
"test:ui": "vitest run apps/web/test",
"typecheck": "tsc --noEmit",
"build": "pnpm -r build",
"dev": "concurrently -k \"pnpm --filter @schemer/server dev\" \"pnpm --filter @schemer/web dev\"",
"test:e2e": "playwright test",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint .",
"check": "biome check .",
"check:ci": "biome ci .",
"fallow": "fallow --format json --quiet",
"fallow:audit": "fallow audit --base main",
"fallow:review": "fallow audit --base main --brief",
"quality": "pnpm check:ci && pnpm typecheck && pnpm test",
"verify": "pnpm quality && pnpm build && pnpm test:e2e",
"doctor": "npx react-doctor@latest"
},
"devDependencies": {
"@biomejs/biome": "2.5.5",
"@playwright/test": "^1.55.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.0.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vitejs/plugin-react": "^4.7.0",
"concurrently": "^9.2.1",
"fallow": "^3.9.1",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"tsx": "^4.20.5",
"typescript": "^5.9.0",
"vitest": "^3.2.4"
},
"dependencies": {
"cheerio": "^1.1.2",
"fast-xml-parser": "^5.10.1",
"fastify": "^5.6.1",
"ipaddr.js": "^2.2.0",
"react": "^19.2.7",
"react-dom": "^19.2.7"
}
}