-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 802 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 802 Bytes
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": "biblical",
"packageManager": "yarn@3.6.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"packages/**/**"
],
"scripts": {
"g:typecheck": "yarn workspaces foreach -pv run typecheck",
"admin": "yarn workspace @biblical/admin dev",
"web": "yarn workspace @biblical/web dev",
"web-build": "yarn workspace @biblical/web build"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
}
}