-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.36 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
{
"name": "kinokit-ai-qa-workshop",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"start": "next start --hostname 127.0.0.1",
"build": "next build",
"lint": "eslint .",
"test:e2e": "env -u FORCE_COLOR -u NO_COLOR playwright test tests/e2e",
"test:visual": "env -u FORCE_COLOR -u NO_COLOR playwright test --config=playwright.visual.config.ts",
"test:msw": "node --import tsx --test tests/msw/booking-api.test.ts",
"test:codex-usage": "node --import tsx --test tools/codex-usage/report.test.ts",
"codex-usage": "tsx tools/codex-usage/report.ts --project kinokit-ai-qa-workshop",
"workshop:reset": "tsx tools/workshop/reset.ts",
"workshop:add-vip-test": "tsx tools/workshop/add-vip-test.ts",
"workshop:add-hydration-test": "tsx tools/workshop/add-hydration-test.ts"
},
"dependencies": {
"msw": "^2.14.6",
"next": "^15.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.27.0",
"@playwright/test": "^1.52.0",
"@types/node": "^22.15.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"eslint": "^9.27.0",
"eslint-config-next": "^15.3.0",
"tsx": "^4.19.0",
"typescript": "^5.8.0",
"typescript-eslint": "^8.32.0"
},
"packageManager": "pnpm@10.11.0"
}