-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.36 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"lint:biome": "biome check .",
"lint:biome:fix": "biome check --write .",
"format": "biome format --write .",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report",
"playwright:install": "playwright install",
"test:agent": "tsx scripts/test-problems.ts",
"fix-tests": "tsx scripts/fix-tests.ts",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"biome check --write"
],
"*.{json,css,md,html}": [
"biome check --write"
]
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"dompurify": "^3.3.1",
"html-react-parser": "^5.2.11",
"isomorphic-dompurify": "^2.35.0",
"monaco-editor": "^0.55.1",
"next": "16.1.1",
"react": "19.2.3",
"react-dom": "19.2.3"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@biomejs/biome": "^2.3.11",
"@chromatic-com/storybook": "^4.1.3",
"@playwright/test": "^1.57.0",
"@storybook/addon-a11y": "^10.1.11",
"@storybook/addon-docs": "^10.1.11",
"@storybook/addon-onboarding": "^10.1.11",
"@storybook/addon-vitest": "^10.1.11",
"@storybook/nextjs-vite": "^10.1.11",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/dompurify": "^3.0.5",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"chromatic": "^13.3.5",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"eslint-plugin-storybook": "^10.1.11",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"lint-staged": "^16.2.7",
"playwright": "^1.57.0",
"storybook": "^10.1.11",
"tailwindcss": "^4",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"vite": "^7.3.1"
}
}