-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·67 lines (67 loc) · 2.23 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"$schema": "https://json.schemastore.org/package.json",
"name": "monorepo",
"version": "0.0.0",
"description": "monorepo template",
"type": "module",
"private": true,
"scripts": {
"build": "nx affected -t build",
"build:all": "nx run-many -t build",
"build:cli": "nx build @organization/cli-app",
"build:scripts": "nx build @organization/scripts",
"clear": "nx run-many -t clear",
"clear:all": "nx run-many -t clear:all && rimraf .nx pnpm-lock.* node_modules",
"commitlint": "commitlint -e",
"dev": "pnpm build && pnpm --recursive --parallel --stream run dev",
"format": "nx affected -t format",
"format:all": "nx run-many -t format",
"format:check": "nx affected -t format:check",
"format:check:all": "nx run-many -t format:check",
"graph": "nx graph",
"lint": "nx affected -t lint",
"lint:all": "nx run-many -t lint",
"lint:check": "nx affected -t lint:check",
"lint:check:all": "nx run-many -t lint:check",
"migrate": "nx migrate latest",
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"test": "nx affected -t test",
"test:all": "nx run-many -t test",
"test:config": "chmod +x cmds/test-config.sh && sh cmds/test-config.sh",
"typecheck:src": "nx affected -t typecheck:src",
"typecheck:src:all": "nx run-many -t typecheck:src",
"typecheck:test": "nx affected -t typecheck:test",
"typecheck:test:all": "nx run-many -t typecheck:test",
"update:env": "node devpacks/scripts update-env .",
"update:packages": "npx npm-check-updates -u --peer --deep --enginesNode --packageManager=pnpm --dep=dev,optional,peer,prod"
},
"keywords": [],
"author": {
"email": "[email protected]",
"name": "Suraj Jha",
"url": "https://jhasuraj.com"
},
"contributors": [],
"license": "MIT",
"engines": {
"node": "22.14.0",
"pnpm": "10.6.3"
},
"engineStrict": true,
"packageManager": "[email protected]",
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"nx": "20.6.0",
"rimraf": "^6.0.1"
},
"lint-staged": {
"*": [
"chmod +x cmds/pre-commit-check.sh",
"cmds/pre-commit-check.sh"
]
}
}