-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
48 lines (48 loc) · 1.13 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
{
"name": "@niwi-starter",
"private": true,
"scripts": {
"commit": "cz",
"build": "turbo build",
"add:docs": "pnpm add --filter=docs",
"dev:docs": "pnpm dev --filter=docs",
"add:web": "pnpm add --filter=web",
"dev:web": "pnpm dev --filter=web",
"add:create-niwi": "pnpm add --filter='create-niwi'",
"db:generate": "turbo db:generate",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky",
"clear:modules": "npx npkill",
"changeset": "changeset"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"@changesets/cli": "^2.27.7",
"turbo": "^2.0.5"
},
"engines": {
"node": ">=18"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"packageManager": "pnpm@9.4.0",
"workspaces": [
"apps/*",
"packages/*"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}