-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1023 Bytes
/
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
{
"private": true,
"workspaces": [
"packages/*"
],
"name": "poool",
"scripts": {
"lint": "eslint .",
"test": "jest",
"test:react": "jest packages/eslint-config-react/",
"test:base": "jest packages/eslint-config/",
"eslint-base": "yarn workspace @poool/eslint-config",
"eslint-react": "yarn workspace @poool/eslint-config-react",
"clean": "turbo run clean",
"build": "turbo run build",
"prepack": "yarn build && yarn lint && yarn tsc && yarn test"
},
"devDependencies": {
"@poool/eslint-config": "workspace:^",
"@poool/eslint-config-react": "workspace:^",
"@swc/core": "1.10.17",
"@swc/jest": "0.2.37",
"@types/eslint": "9.6.1",
"@types/eslint__js": "8.42.3",
"@types/jest": "29.5.14",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"eslint": "9.20.1",
"jest": "29.7.0",
"lerna": "8.1.9",
"turbo": "2.4.2",
"typescript": "5.7.3",
"typescript-eslint": "8.24.1"
},
"packageManager": "[email protected]"
}