-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
54 lines (54 loc) · 1.87 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
{
"type": "module",
"private": true,
"workspaces": [
"packages/*"
],
"repository": "[email protected]:vtaits/react-select-async-paginate.git",
"author": "Vadim Taits",
"license": "MIT",
"scripts": {
"start": "storybook dev -p 6006",
"build": "bun ./scripts/build.ts",
"lint": "bun --filter='*' run lint",
"lint:fix": "bun --filter='*' run lint:fix",
"format": "bun --filter='*' run format",
"test:ts": "bun --filter='*' run test:ts",
"test:unit": "bun --filter='*' run test:unit",
"test:unit:cov": "bun --filter='*' run test:unit:cov",
"test": "bun run lint && bun run test:ts && bun run test:unit && bun run test-storybook --testTimeout=30000",
"test:storybook:dev": "bun run test-storybook --watch",
"validate": "bun run build && bun run lint && bun run test:ts && bun run test:unit:cov",
"codecov": "bun --filter='*' run codecov",
"postinstall": "bunx ---bun playwright install chromium"
},
"devDependencies": {
"@storybook/addon-coverage": "1.0.5",
"@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.21.0",
"@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.1",
"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.7.3",
"vite": "^6.0.7",
"@types/bun": "latest"
}
}