forked from vtaits/react-select-async-paginate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.19 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
{
"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 -pt run clean",
"build": "yarn workspaces foreach -t run build",
"lint": "yarn workspaces foreach run lint",
"test:ts": "yarn workspaces foreach run test:ts",
"test:unit": "yarn workspaces foreach run test:unit",
"test:unit:cov": "yarn workspaces foreach run test:unit:cov",
"test": "yarn lint && yarn test:ts && yarn test:unit",
"validate": "yarn build && yarn lint && yarn test:ts && yarn test:unit:cov",
"codecov": "yarn workspaces foreach run codecov"
},
"devDependencies": {
"@babel/types": "^7.22.5",
"@storybook/addon-essentials": "^7.0.23",
"@storybook/addon-interactions": "^7.0.23",
"@storybook/addon-links": "^7.0.23",
"@storybook/blocks": "^7.0.23",
"@storybook/builder-vite": "^7.0.23",
"@storybook/react": "^7.0.23",
"@storybook/react-vite": "^7.0.23",
"@storybook/testing-library": "^0.2.0",
"@types/jest": "^29.5.2",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"@vitejs/plugin-react": "^4.0.1",
"codecov": "^3.8.3",
"cross-env": "^7.0.3",
"eslint": "^8.43.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.12",
"jest": "^29.5.0",
"path": "^0.12.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-refresh": "^0.14.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^5.0.1",
"storybook": "^7.0.23",
"ts-jest": "^29.1.0",
"typescript": "5.1.3",
"vite": "^4.3.9"
},
"dependenciesMeta": {
"[email protected]": {
"unplugged": true
}
}
}