-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "monorepo",
"description": "A monorepo starter template using native NPM workspace",
"version": "0.0.0-development",
"private": true,
"author": "Your ORG (https://example.com)",
"repository": "https://github.com/org/monorepo",
"bugs": "https://github.com/org/monorepo/issues",
"license": "MIT",
"keywords": [
"github",
"npm",
"starter",
"monorepo",
"package",
"template",
"boilerplate"
],
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"dev": "npm run dev --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"test": "npm test --workspaces --if-present",
"coverage": "npm run coverage --workspaces --if-present",
"types": "npm run types --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"format": "npm run format --workspaces --if-present"
},
"devDependencies": {
"doogu": "^4.1.2",
"vite-plugin-cachedir": "^1.2.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": "doogu/prettier.config.js",
"release": {
"extends": "doogu/release.config.js"
}
}