-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
31 lines (31 loc) · 855 Bytes
/
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
{
"name": "recycle-chain",
"version": "1.0.0",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"libs/*"
],
"nohoist": [
"**/@nestjs",
"**/@nestjs/**"
]
},
"devDependencies": {
"prettier": "^3.3.2",
"nx": "19.2.3",
"husky": "^8.0.0"
},
"scripts": {
"format": "prettier \"{apps,libs,standalone}/**/*.{ts,tsx,js,json}\" --ignore-path .gitignore",
"format:check": "yarn format --check",
"format:write": "yarn format --write",
"tsc": "yarn nx run-many -t tsc",
"lint": "yarn nx run-many -t lint",
"validate": "yarn format:write && yarn lint && yarn tsc",
"prepare": "husky install",
"cloc": "npx cloc --exclude-dir=node_modules,dist,build,yarn.lock,package.json,generated.tsx,.next,.nx,.expo,standalone,package-lock.json ."
}
}