-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.09 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.09 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
{
"type": "module",
"private": true,
"workspaces": [
"packages/*"
],
"repository": "git@github.com: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": "bun run lint && bun run test:ts && bun run test:unit",
"validate": "bun run build && bun run test",
"codecov": "bun --filter='*' run codecov"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@storybook/react-vite": "^9.1.9",
"@types/bun": "latest",
"@vitejs/plugin-react": "^5.0.4",
"codecov": "^3.8.3",
"cross-env": "^10.1.0",
"path": "^0.12.7",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-refresh": "^0.17.0",
"rimraf": "^6.0.1",
"storybook": "^9.1.9",
"typescript": "5.9.3",
"vite": "^7.1.7"
}
}