-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
53 lines (53 loc) · 1.79 KB
/
package.json
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
{
"name": "zuplo-docs",
"private": true,
"type": "module",
"version": "0.0.0",
"engines": {
"node": "22.x"
},
"scripts": {
"dev": "zudoku dev",
"check:assets": "lychee --scheme file --base public --exclude '.*' --include '\\.(jpg|png|webp|webm)' ./docs",
"check:external-links": "lychee --exclude-all-private --exclude '\\.(png|gif|webp|webm)$' --exclude auth0.com --scheme https --max-concurrency 5 ./docs ./generated",
"check": "npm run check:assets && npm run check:external-links",
"build": "zudoku build",
"format": "prettier --write .",
"typecheck": "tsc",
"postinstall": "npm run policies:get && npm run policies:generate && npm run errors:generate && npm run api:get && npm run zudoku:get",
"zudoku:get": "sh ./scripts/get-zudoku.sh",
"policies:get": "sh ./scripts/get-policies.sh",
"policies:generate": "tsx scripts/generate-policies.ts",
"api:get": "curl -o ./api.json https://dev.zuplo.com/openapi",
"errors:generate": "tsx scripts/generate-errors.ts"
},
"dependencies": {
"@sentry/react": "^8.46.0",
"@sentry/vite-plugin": "^2.22.7",
"@xyflow/react": "^12.3.6",
"elkjs": "^0.9.3",
"lucide-react": "^0.469.0",
"posthog-js": "^1.139.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zudoku": "^0.23.3"
},
"devDependencies": {
"@types/json-schema": "7.0.15",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"glob": "11.0.0",
"gray-matter": "4.0.3",
"prettier": "3.4.2",
"safe-marked": "16.0.0",
"tsx": "4.19.1",
"typescript": "5.7.2",
"unified": "^11.0.5",
"vfile": "^6.0.3"
}
}