-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.16 KB
/
package.json
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
82
83
84
85
86
87
88
89
90
91
92
{
"name": "web-playground",
"version": "0.0.1",
"type": "module",
"scripts": {
"plopTemplates": "pnpm cross-env NODE_OPTIONS='--import tsx' plop --plopfile=script/plopfile.ts",
"generate:vrt": "playwright test --update-snapshots",
"dev:vite": "vite --host",
"dev:rm-hcm": "nodemon --ext scss --watch src --exec 'node --import tsx script/remove-unused-hcm.ts'",
"dev:storybook": "pnpm storybook --no-open",
"dev": "pnpm /^dev:.*/",
"lint:eslint": "eslint . --flag unstable_ts_config --max-warnings 0",
"lint:stylelint": "stylelint **/*.{css,scss,sass}",
"lint": "pnpm /^lint:.*/",
"storybook": "storybook dev -p 6006",
"test:vrt": "playwright test",
"test:vitest": "vitest run",
"test": "pnpm /^test:.*/",
"preview:storybook": "pnpm build:storybook && http-server storybook-static -p 6006",
"preview": "vite preview",
"build:storybook": "storybook build --stats-json",
"build": "tsc -b && vite build"
},
"dependencies": {
"clsx": "^2.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@playwright/test": "^1.46.1",
"@storybook/addon-a11y": "^8.2.9",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/manager-api": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-vite": "^8.2.9",
"@storybook/test": "^8.2.9",
"@storybook/theming": "^8.2.9",
"@stylistic/eslint-plugin-ts": "^2.7.1",
"@stylistic/stylelint-plugin": "^3.0.1",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/eslint__js": "^8.42.3",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"@vitest/browser": "^2.0.5",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/eslint-plugin": "^1.1.0",
"cross-env": "^7.0.3",
"eslint": "^9.9.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "5.1.0-rc-b57d2823-20240822",
"eslint-plugin-react-refresh": "^0.4.11",
"eslint-plugin-storybook": "0.9.0--canary.156.ed236ca.0",
"eslint-plugin-unused-imports": "^4.1.3",
"globals": "^15.9.0",
"happy-css-modules": "^3.1.1",
"happy-dom": "^15.7.3",
"http-server": "^14.1.1",
"jiti": "^1.21.6",
"nodemon": "^3.1.4",
"playwright": "^1.46.1",
"plop": "^4.0.1",
"postcss": "^8.4.41",
"sass": "^1.77.8",
"simple-git": "^3.26.0",
"storybook": "^8.2.9",
"stylelint": "^16.8.2",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"stylelint-order": "^6.0.4",
"tsx": "^4.19.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0",
"vite": "^5.4.2",
"vite-plugin-happy-css-modules": "^0.3.0",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.0.5"
},
"resolutions": {
"inquirer": "9.3.5"
},
"private": true
}