-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.19 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
45
46
47
48
49
{
"name": "node-monorepo-workspaces",
"version": "0.0.0",
"description": "Node.js Monorepo example with pnpm Workspaces",
"private": true,
"type": "module",
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=24"
},
"scripts": {
"build": "nx run-many -t=build",
"build:clean": "del-cli **/dist",
"test": "nx run-many -t=test",
"lint": "nx run-many -t=lint",
"release": "tsx ./bin/nx-release.ts"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@nx/js": "~22.5.4",
"@nx/vitest": "~22.5.4",
"@swc/cli": "0.7.10",
"@swc/core": "1.15.18",
"@types/node": "^24.12.0",
"@vitest/eslint-plugin": "^1.6.12",
"del-cli": "^7.0.0",
"eslint": "^9.39.4",
"nx": "~22.5.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vite": "^8.0.0",
"vitest": "^4.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/CatsMiaow/node-monorepo-workspaces.git"
},
"keywords": [
"Node.js",
"Monorepo",
"Workspaces",
"NestJS",
"Nx"
],
"homepage": "https://github.com/CatsMiaow/node-monorepo-workspaces#readme",
"author": "CatsMiaow",
"license": "MIT"
}