-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.81 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
59
60
61
62
63
64
{
"name": "reasonpatch",
"version": "1.0.0",
"description": "Repair the step. Keep the thinking yours.",
"homepage": "https://reasonpatch.vercel.app",
"repository": {
"type": "git",
"url": "https://github.com/FusionCube18712/reasonpatch.git"
},
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --max-warnings=0",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:production": "npm run build && playwright test --config=playwright.production.config.ts e2e/repair-flow.spec.ts --project=chromium",
"demo:video": "node scripts/record-demo.mjs",
"check": "npm run lint && npm run typecheck && npm run test:coverage && npm run build"
},
"keywords": [
"education",
"reasoning",
"openai",
"gpt-5.6"
],
"author": "",
"license": "MIT",
"dependencies": {
"@phosphor-icons/react": "^2.1.10",
"geist": "^1.7.2",
"next": "^16.2.10",
"openai": "^6.48.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@playwright/test": "^1.61.1",
"@tailwindcss/postcss": "^4.3.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^9.39.5",
"eslint-config-next": "^16.2.10",
"jsdom": "^29.1.1",
"postcss": "^8.5.19",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"overrides": {
"postcss": "$postcss"
}
}