-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 816 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
{
"name": "@nish1896/react-nestjs-monorepo",
"author": "Nishant Kohli",
"version": "1.0.1",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"prepare": "husky",
"lib:build": "yarn workspace @core/lib lib:build",
"dev": "turbo run dev --parallel --no-cache",
"build": "turbo run build",
"lint": "turbo run lint",
"prettier": "prettier \"{apps,packages}/**/*.{json,html,css,sass,scss}\" --write --ignore-unknown"
},
"devDependencies": {
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"turbo": "^2.0.6"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{json,html,css,sass,scss}": [
"prettier --write --ignore-unknown"
]
},
"packageManager": "[email protected]"
}