generated from nishkohli96/react-node-ts-monorepo
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.22 KB
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
38
39
40
41
42
43
44
{
"name": "client-server-libs",
"author": "Nishant Kohli",
"version": "1.2.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"engines": {
"node": ">=20.11.0"
},
"scripts": {
"prepare": "husky",
"lib": "turbo run lib:build",
"react-client": "yarn workspace react-client dev",
"next-client": "yarn workspace next-client dev",
"express-server": "yarn workspace express-server dev",
"nestjs-server": "yarn workspace nestjs-server dev",
"graphql-server": "yarn workspace graphql-server dev",
"codegen": "yarn workspace graphql-server codegen",
"seed": "yarn workspace mongo-seeders seed",
"build": "turbo run build",
"lint": "turbo run lint",
"prettier": "prettier \"{apps,packages}/**/*.{json,html,css,sass,scss}\" --write --ignore-unknown"
},
"devDependencies": {
"@nish1896/eslint-flat-config": "^3.0.3",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"prettier": "^3.5.3",
"eslint": "^9.25.1",
"turbo": "^2.5.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,html,css,sass,scss}": [
"prettier --write --ignore-unknown"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"packageManager": "yarn@1.22.22"
}