forked from nexoraorg/chenaikit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 826 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 826 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
{
"name": "chenaikit",
"private": true,
"version": "0.1.0",
"description": "chenaikit monorepo — contracts / backend / frontend / shared packages",
"packageManager": "pnpm@9.15.9",
"scripts": {
"build": "pnpm -r --filter=./apps/* --filter=./packages/* run build",
"backend:build": "pnpm --filter ./apps/backend run build",
"frontend:build": "pnpm --filter ./apps/frontend run build",
"packages:build": "pnpm --filter ./packages/* run build",
"blockchain:build": "pnpm --filter ./scripts run contracts:build",
"test:all": "pnpm -r run test",
"lint": "pnpm -r run lint",
"prepare": "husky"
},
"devDependencies": {
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"typescript": "^5.5.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix"
]
}
}