-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1011 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
{
"name": "monorepo",
"packageManager": "[email protected]",
"scripts": {
"lint": "eslint ./packages --ext .ts,.tsx,.js,.jsx --cache",
"client-common-design": "yarn workspace @client/design",
"client-common-hooks": "yarn workspace @client/hooks",
"client-common-use-stop-watch": "yarn workspace @client/use-stop-watch",
"clock-client": "yarn workspace clock-client",
"prettier": "prettier . --write"
},
"workspaces": [
"packages/**/*"
],
"devDependencies": {
"@emotion/eslint-plugin": "^11.10.0",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.14",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}