-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 2.1 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
{
"name": "opentoggl",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "vp run build -r",
"check": "vp check && vp run check -r",
"test": "vp run test -r",
"test:e2e:website": "vp run website#test:e2e",
"test:e2e:website:real-runtime": "vp run website#test:e2e:real-runtime",
"test:cli": "vp test run --config tests/cli-integration/vitest.config.ts",
"ready": "vp fmt && vp lint && vp run test -r && vp run build -r",
"dev:website": "vp run website#dev",
"dev:landing": "vp run landing#dev",
"generate:website-api": "vp run generate:website-api:web && vp run generate:website-api:admin && vp run generate:website-api:import && vp run generate:website-api:public-track && vp run generate:website-api:public-reports && vp run generate:website-api:public-webhooks && vp fmt apps/website/src/shared/api/generated",
"generate:website-api:web": "vp exec openapi-ts -f openapi/configs/openapi-ts.web.config.ts",
"generate:website-api:admin": "vp exec openapi-ts -f openapi/configs/openapi-ts.admin.config.ts",
"generate:website-api:import": "vp exec openapi-ts -f openapi/configs/openapi-ts.import.config.ts",
"generate:website-api:public-track": "vp exec openapi-ts -f openapi/configs/openapi-ts.public-track.config.ts",
"generate:website-api:public-reports": "vp exec openapi-ts -f openapi/configs/openapi-ts.public-reports.config.ts",
"generate:website-api:public-webhooks": "vp exec openapi-ts -f openapi/configs/openapi-ts.public-webhooks.config.ts",
"prepare": "vp config"
},
"devDependencies": {
"@hey-api/openapi-ts": "catalog:",
"@playwright/test": "^1.58.1",
"@vitejs/plugin-react": "^5.1.0",
"execa": "catalog:",
"vite-plus": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@10.32.1",
"pnpm": {
"overrides": {
"dompurify": "^3.4.1",
"lodash": "^4.18.1",
"lodash-es": "^4.18.1",
"serialize-javascript": "^7.0.5",
"brace-expansion@1": "^1.1.13",
"picomatch@4": "^4.0.4",
"smol-toml": "^1.6.1"
}
}
}