forked from vtaits/react-select-async-paginate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.76 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
{
"private": true,
"workspaces": [
"packages/*"
],
"repository": "[email protected]:vtaits/react-select-async-paginate.git",
"author": "Vadim Taits",
"license": "MIT",
"scripts": {
"start": "start-storybook",
"build": "yarn workspaces run build",
"lint": "yarn workspaces run lint",
"test:ts": "yarn workspaces run test:ts",
"test:unit": "yarn workspaces run test:unit",
"test:unit:cov": "yarn workspaces 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 run codecov"
},
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@storybook/react": "^6.1.16",
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.20",
"@types/react-select": "^4.0.12",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"@wojtekmaj/enzyme-adapter-react-17": "^0.4.1",
"babel-loader": "^8.2.2",
"codecov": "^3.8.1",
"cross-env": "^7.0.3",
"enzyme": "^3.11.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"path": "^0.12.7",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3"
}
}