-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.39 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.39 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
{
"name": "project-template",
"private": true,
"description": "A template for typescript monorepo projects",
"scripts": {
"build": "nx run-many --target=build",
"clean": "nx run-many --target=clean",
"lint": "nx run-many --target=lint",
"nx": "nx",
"reset": "nx reset",
"start": "nx run examples:start",
"test": "nx run-many --target=test",
"webpack": "nx run-many --target=webpack",
"ci": "nx run-many --targets=build,lint,test,webpack",
"npm:publish": "pnpm publish -r",
"pnpm:prune": "pnpm store prune",
"verdaccio:adduser": "pnpm adduser --registry http://localhost:4873",
"verdaccio:login": "pnpm login --registry http://localhost:4873",
"verdaccio:publish": "pnpm publish -r --registry http://localhost:4873",
"verdaccio:purge": "rm -rf ~/.config/verdaccio/storage",
"verdaccio:purgeuser": "rm ~/.config/verdaccio/htpasswd"
},
"keywords": [],
"author": "Matt Rakow",
"license": "Unlicense",
"type": "module",
"devDependencies": {
"@changesets/cli": "^2.29.5",
"nx": "^21.3.0"
},
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.13.1+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad"
}