forked from asbplayer/asbplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·28 lines (28 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·28 lines (28 loc) · 1.12 KB
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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"client",
"extension",
"common"
]
},
"devDependencies": {
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"prettier": "^3.6.2",
"yarn-upgrade-all": "^0.7.5"
},
"scripts": {
"verify": "scripts/loc/loc-keys-match && 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 && 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]",
"resolutions": {
"[email protected]": "patch:lamejs@npm:1.2.0#.yarn/patches/lamejs-npm-1.2.0-b0315d05aa.patch"
}
}