-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
45 lines (45 loc) · 1.33 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": "serenity",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"build": "turbo build",
"build:pkgs": "turbo build --filter='./packages/*'",
"build:docs": "typedoc",
"lint": "turbo lint ",
"lint:fix": "turbo lint -- --fix",
"test": "exit 0",
"clean": "rimraf -g '**/{dist,node_modules}' || true",
"running-top-level-from-any-directory": "yarn run -T ...",
"postversion": "yarn install && yarn prepare",
"version": "yarn changeset version",
"version:beta": "yarn changeset version --snapshot beta",
"release": "yarn changeset publish",
"release:beta": "yarn changeset publish --no-git-tag --snapshot --tag beta",
"changeset": "changeset",
"prepare": "husky"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.9",
"@changesets/types": "6.0.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-angular": "^19.5.0",
"@turbo/gen": "2.2.3",
"husky": "^9.1.6",
"rimraf": "6.0.1",
"turbo": "2.2.3",
"typedoc": "0.25.13",
"typedoc-material-theme": "^1.1.0",
"typedoc-plugin-extras": "^3.1.0",
"typedoc-plugin-missing-exports": "^3.0.2",
"typedoc-plugin-rename-defaults": "^0.7.1"
},
"engines": {
"node": ">= 22.0.0"
},
"workspaces": [
"packages/*",
"devapp"
]
}