-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
executable file
·24 lines (24 loc) · 1.01 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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"client",
"extension",
"common"
]
},
"devDependencies": {
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "2.4.1"
},
"scripts": {
"verify": "scripts/loc/loc-keys-match && scripts/loc/loc-files-are-web-accessible && scripts/loc/loc-codes-in-extension-config && scripts/page-file-references-are-correct && yarn workspace @project/common run test && yarn workspace @project/client run test:nowatch && yarn workspace @project/extension run test && yarn run eslint common extension/src && yarn run pretty:check",
"pretty": "yarn prettier --write './(client|common|extension)/**/*.(js|ts|tsx|css)'",
"pretty:check": "yarn prettier --check './(client|common|extension)/**/*.(js|ts|tsx|css)'"
},
"packageManager": "[email protected]"
}