This repository was archived by the owner on Mar 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.74 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.74 KB
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": "ddd-framework",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "turbo run build",
"clean:.next": "find . -name '.next' -type d -prune -exec rm -rf '{}' +",
"clean:deps": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"clean:dist": "find ./lib -name 'dist' -type d -prune -exec rm -rf '{}' +",
"clean:pnpm": "find . -name 'pnpm-lock.yaml' -type f -prune -exec rm -rf '{}' +",
"clean:tmp": "find ./lib -name 'tmp' -type d -prune -exec rm -rf '{}' +",
"clean:tsbuildinfo": "find ./lib -name '*.tsbuildinfo' -type f -prune -exec rm -rf '{}' +",
"clean:turbo": "find ./ -name '.turbo' -type d -prune -exec rm -rf '{}' +",
"clean": "pnpm clean:.next && pnpm clean:deps && pnpm clean:dist && pnpm clean:tmp && pnpm clean:turbo && pnpm clean:pnpm",
"commit": "pnpm cz",
"dev": "turbo run dev --parallel --no-deps",
"gen:docs": "pnpm typedoc",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"prebuild": "pnpm clean:dist",
"preclean:deps": "pnpm clean:pnpm",
"preclean:dist": "pnpm clean:tsbuildinfo",
"test": "turbo run test",
"watch": "turbo run build --watch"
},
"devDependencies": {
"@release-it/conventional-changelog": "~8.0.1",
"commitizen": "~4.3.0",
"cz-conventional-changelog": "~3.3.0",
"release-it": "~17.5.0",
"turbo": "~2.0.6",
"typedoc": "~0.26.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"disableScopeLowerCase": false,
"disableSubjectLowerCase": false,
"maxHeaderWidth": 100,
"maxLineWidth": 100
}
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "pnpm@7.30.0"
}