-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.87 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
{
"name": "@yourorg/x2",
"publishConfig": {
"access": "public"
},
"private": false,
"version": "2.2.1",
"type": "module",
"bin": {
"x2": "./dist/cli/x2.js"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build && tsc --project tsconfig.cli.json",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run --project unit",
"test:watch": "vitest --project unit",
"test:storybook": "vitest run --project storybook",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.1.2",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@storybook/addon-a11y": "^10.3.5",
"@storybook/addon-docs": "^10.3.5",
"@storybook/addon-onboarding": "^10.3.5",
"@storybook/addon-vitest": "^10.3.5",
"@storybook/react-vite": "^10.3.5",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/browser-playwright": "^4.1.5",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^10.2.1",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-storybook": "^10.3.5",
"globals": "^17.5.0",
"happy-dom": "^20.9.0",
"playwright": "^1.59.1",
"semantic-release": "^25.0.3",
"storybook": "^10.3.5",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.2",
"vite": "^8.0.10",
"vitest": "^4.1.5"
}
}