-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.2 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
{
"name": "pnpm-monorepo-boilerplate",
"version": "0.0.2",
"description": "Basic PNPM Typescript Monorepo. Basically Turborepo minus caching with opinionated additions.",
"author": "Russ Savage [email protected]",
"private": true,
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"clean": "rimraf \"node_modules\" \"**/node_modules\" \"**/.next\" \"**/dist\" \"**/pnpm-error.log\" \"**/.DS_Store\"",
"fresh": "pnpm clean && pnpm i",
"nuke": "rimraf \"**/pnpm-lock.yaml\" && pnpm fresh",
"build": "pnpm --stream -r run build",
"dev": "pnpm --stream -r run dev",
"lint": "pnpm --stream -r run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"release": "pnpm standard-version"
},
"husky": {
"hooks": {
"pre-commit": "pnpm pretty-quick --staged "
}
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"backfill": "^6.1.13",
"eslint": "^8.10.0",
"husky": "^7.0.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"standard-version": "^9.3.2",
"typescript": "^4.5.3"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "[email protected]"
}