-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "core",
"description": "Yarn v3 berry based monorepo workspace, configured with eslint,tsconfig etc",
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/eslint": "^8.4.10",
"@types/node": "^18.11.17",
"@types/prettier": "^2.7.2",
"dprint": "^0.34.1",
"eslint": "^8.30.0",
"husky": "^8.0.2",
"pinst": "^3.0.0",
"prettier": "^2.8.1",
"turbo": "^1.6.3",
"typescript": "^4.9.4"
},
"scripts": {
"athena": "pnpm --filter=./apps/athena",
"athena:dev": "turbo run dev --scope=@core/athena",
"build": "turbo run build --parallel",
"dev": "turbo run dev --parallel --no-cache",
"hera": "pnpm --filter=./apps/hera",
"hera:dev": "turbo run dev --scope=@core/hera",
"format": "pnpm dprint fmt",
"gaia:dev": "cargo watch -x run -p gaia -w ./apps/gaia",
"lint": "turbo run lint --parallel",
"logger": "pnpm --filter=./libs/logger",
"ui": "pnpm --filter=./apps/ui"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"packageManager": "pnpm@7.19.0"
}