-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.16 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.16 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
65
66
{
"name": "artifact-keeper-web",
"version": "1.1.3",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:ci": "playwright test --reporter=github",
"test:e2e:docs-export": "npx tsx e2e/scripts/generate-docs-manifest.ts",
"test:e2e:docker-proxy": "playwright test --config playwright-docker-proxy.config.ts",
"tutorial:record": "playwright test --config playwright-tutorials.config.ts",
"tutorial:record:one": "playwright test --config playwright-tutorials.config.ts -g",
"tutorial:manifest": "npx tsx e2e/tutorials/scripts/generate-manifest.ts",
"tutorial:generate-videos": "npx tsx e2e/tutorials/scripts/generate-videos.ts"
},
"dependencies": {
"@artifact-keeper/sdk": "^1.1.6",
"@hookform/resolvers": "^5.2.2",
"@tanstack/react-query": "^5.100.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"framer-motion": "^12.38.0",
"lucide-react": "^1.14.0",
"next": "16.2.6",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "19.2.6",
"react-dom": "19.2.6",
"react-hook-form": "^7.75.0",
"react-markdown": "^10.1.0",
"react-qr-code": "^2.0.21",
"react-resizable-panels": "^4.10.0",
"shiki": "^4.0.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@aws-sdk/client-polly": "^3.1045.0",
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.6.2",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"jsdom": "^29.0.1",
"tailwindcss": "^4.3.0",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}