-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
59 lines (59 loc) · 2.06 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
{
"private": true,
"workspaces": [
"packages/*"
],
"repository": "[email protected]:vtaits/react-select-async-paginate.git",
"author": "Vadim Taits",
"license": "MIT",
"scripts": {
"start": "storybook dev -p 6006",
"clean": "yarn workspaces foreach --all -pt run clean",
"build": "yarn workspaces foreach --all -t run build",
"lint": "yarn workspaces foreach --all run lint",
"lint:fix": "yarn workspaces foreach --all run lint:fix",
"format": "yarn workspaces foreach --all run format",
"test:ts": "yarn workspaces foreach --all run test:ts",
"test:unit": "yarn workspaces foreach --all run test:unit",
"test:unit:cov": "yarn workspaces foreach --all run test:unit:cov",
"test": "yarn lint && yarn test:ts && yarn test:unit && yarn test-storybook --testTimeout=30000",
"test:storybook:dev": "yarn test-storybook --watch",
"validate": "yarn build && yarn lint && yarn test:ts && yarn test:unit:cov",
"codecov": "yarn workspaces foreach --all run codecov",
"postinstall": "yarn playwright install chromium"
},
"packageManager": "[email protected]",
"devDependencies": {
"@storybook/addon-coverage": "1.0.4",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/builder-vite": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@storybook/test-runner": "^0.20.1",
"@storybook/testing-library": "^0.2.2",
"@types/react-test-renderer": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"codecov": "^3.8.3",
"cross-env": "^7.0.3",
"jest-playwright-preset": "^4.0.0",
"path": "^0.12.7",
"playwright": "^1.49.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-refresh": "^0.16.0",
"react-test-renderer": "^19.0.0",
"rimraf": "^6.0.1",
"storybook": "^8.4.7",
"typescript": "5.6.2",
"vite": "^6.0.3"
},
"dependenciesMeta": {
"[email protected]": {
"unplugged": true
}
}
}