-
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) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.13 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": "ask-dev-workbench",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@11.21.0",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"test:corpus": "python3 corpus/test_corpus.py && python3 corpus/test_expect_schema.py && python3 corpus/test_schema_shim.py && python3 corpus/test_semantic_verdict.py && python3 corpus/test_semantic_verdict_smoke.py && python3 corpus/test_semantic_verdict_proof.py && python3 corpus/test_schema_driven_shapes.py",
"acr:contracts:generate": "node scripts/sync-acr-contracts.mjs generate --allow-write",
"acr:contracts:check": "node scripts/sync-acr-contracts.mjs check",
"test:ci": "bash ci/run_checks.sh ci"
},
"dependencies": {
"@openuidev/react-lang": "0.2.11",
"ajv": "8.20.0",
"ajv-formats": "3.0.1",
"next": "16.3.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"server-only": "0.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@next/eslint-plugin-next": "16.3.3",
"@playwright/test": "^1.57.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^16.5.0",
"jsdom": "^28.0.2",
"json-schema-to-typescript": "15.0.4",
"prettier": "3.9.6",
"typescript": "^6",
"typescript-eslint": "^8.48.1",
"vite": "^7.2.4",
"vitest": "^4.1.10"
}
}