-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 990 Bytes
/
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
{
"name": "0n0",
"version": "0.1.0",
"private": true,
"type": "module",
"repository": "https://github.com/AirOne01/0n0.git",
"packageManager": "[email protected]",
"workspaces": [
"docs",
"apps/*",
"packages/*"
],
"scripts": {
"ci:publish": "pnpm publish -r",
"ci:version": "pnpm changeset version && pnpm install --no-frozen-lockfile && git add .",
"commitlint": "commitlint --edit",
"commit": "cz",
"prepare": "husky",
"turbo": "turbo"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"commitizen": "^4.3.0",
"conventional-changelog": "^5.1.0",
"conventional-changelog-cli": "^4.1.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.0.11",
"inquirer": "^9.2.17",
"turbo": "^1.13.2",
"xo": "^0.58.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}