-
-
Notifications
You must be signed in to change notification settings - Fork 208
/
Copy pathpackage.json
34 lines (34 loc) · 850 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
{
"name": "jscpd-monorepo",
"private": true,
"npmClient": "yarn",
"useWorkspaces": true,
"version": "4.0.0-rc.0",
"scripts": {
"build": "turbo run build",
"commit": "cz",
"generate": "turbo run generate",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test",
"cleanup": "turbo run cleanup",
"typecheck": "turbo run typecheck",
"publish-packages": "changeset version && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"turbo": "^1.13.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"readmeFilename": "README.md",
"dependencies": {
"@vitest/coverage-v8": "^2.0.5"
}
}