-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.54 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
{
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"postinstall": "pnpm run prepare",
"build": "turbo build",
"dev": "turbo dev --no-cache --continue",
"lint": "turbo lint",
"clean": "turbo clean && rm -rf node_modules",
"format": "turbo format",
"changeset": "changeset",
"test": "turbo test",
"prepare": "husky install",
"version-packages": "changeset version",
"create:package": "plop package",
"create:changeset": "pnpm dlx changeset-conventional-commits",
"pre-release": "turbo build && changeset version && pnpm install --no-frozen-lockfile && git add pnpm-lock.yaml && git commit -m 'chore: update lockfile' || echo 'Nothing to commit'",
"release": "pnpm run pre-release && changeset publish",
"commit": "cz",
"commit:retry": "cz --retry"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.22.0",
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@commitlint/cz-commitlint": "^18.4.4",
"@composite-fetcher/eslint-config": "workspace:*",
"changeset-conventional-commits": "^0.2.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.49.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"plop": "^4.0.0",
"prettier": "^3.0.3",
"turbo": "latest"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"packageManager": "pnpm@9.12.3",
"dependencies": {
"tsup": "^7.2.0"
}
}