forked from karthickthankyou/autospace-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 944 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
32
33
34
35
36
{
"name": "autospace",
"version": "1.0.0",
"description": "",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"libs/*"
],
"nohoist": [
"**/@nestjs",
"**/@nestjs/**"
]
},
"scripts": {
"format": "prettier \"{apps,libs}/**/*.{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",
"build": "yarn nx run-many -t build",
"validate": "yarn format:write && yarn tsc && yarn lint && yarn build",
"prepare": "husky install",
"cloc": "npx cloc --exclude-dir=node_modules,dist,build,yarn.lock,package.json,generated.tsx,.next,.nx ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"prettier": "^2.3.2",
"typescript": "^5.4.3",
"husky": "^8.0.0",
"nx": "18.3.4"
}
}