-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 2.65 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
{
"name": "react-library",
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"scripts": {
"ci": "yarn prettier && yarn lint && yarn dbuild && yarn test",
"clean": "rimraf node_modules -g 'packages/*/.eslintcache' 'packages/*/*.tsbuildinfo' 'packages/*/dist' 'packages/*/.rollup.cache' 'packages/*/types' 'packages/*/coverage'",
"dbuild": "npm-run-all 'dbuild:*'",
"dbuild:utils": "yarn workspace @dolthub/web-utils dbuild",
"dbuild:hooks": "yarn workspace @dolthub/react-hooks dbuild",
"dbuild:contexts": "yarn workspace @dolthub/react-contexts dbuild",
"dbuild:resource": "yarn workspace @dolthub/proto-resource-utils dbuild",
"dbuild:components": "yarn workspace @dolthub/react-components dbuild",
"lint": "npm-run-all --parallel 'lint:*'",
"lint:hooks": "yarn workspace @dolthub/react-hooks lint",
"lint:contexts": "yarn workspace @dolthub/react-contexts lint",
"lint:utils": "yarn workspace @dolthub/web-utils lint",
"lint:resource": "yarn workspace @dolthub/proto-resource-utils lint",
"lint:components": "yarn workspace @dolthub/react-components lint",
"prettier": "npm-run-all --parallel 'prettier:*'",
"prettier:hooks": "yarn workspace @dolthub/react-hooks prettier",
"prettier:contexts": "yarn workspace @dolthub/react-contexts prettier",
"prettier:utils": "yarn workspace @dolthub/web-utils prettier",
"prettier:resource": "yarn workspace @dolthub/proto-resource-utils prettier",
"prettier:components": "yarn workspace @dolthub/react-components prettier",
"test": "npm-run-all --parallel 'test:*'",
"test:hooks": "yarn workspace @dolthub/react-hooks test",
"test:contexts": "yarn workspace @dolthub/react-contexts test",
"test:utils": "yarn workspace @dolthub/web-utils test",
"test:resource": "yarn workspace @dolthub/proto-resource-utils test",
"test:components": "yarn workspace @dolthub/react-components test"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-css-modules": "^2.12.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-testing-library": "^7.0.0",
"npm-run-all2": "^7.0.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.6.3"
}
}