-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
62 lines (62 loc) · 1.75 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "serenityjs",
"version": "0.0.0",
"private": true,
"scripts": {
"prepare": "husky",
"watch": "turbo watch",
"build": "turbo build",
"build:pkgs": "turbo build --filter='./packages/*'",
"build:docs": "typedoc",
"dev": "turbo dev",
"test": "turbo test",
"lint": "turbo lint",
"new": "turbo gen",
"commitlint": "commitlint --edit",
"postversion": "yarn install",
"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"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.1",
"@changesets/types": "6.0.0",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-angular": "^19.1.0",
"@droppedcode/typedoc-plugin-relative-includes": "^1.0.5",
"@serenityjs/eslint-config": "*",
"@serenityjs/typescript-config": "*",
"@swc/core": "^1.7.24",
"@turbo/gen": "^1.12.5",
"@types/cross-spawn": "^6.0.6",
"@types/debug": "^4",
"@yarnpkg/core": "^4.0.3",
"cross-spawn": "^7.0.3",
"debug": "^4.3.5",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"json5": "^2.2.3",
"pinst": "^3.0.0",
"turbo": "latest",
"typedoc": "^0.25.13",
"typedoc-material-theme": "^1.0.2",
"typedoc-plugin-extras": "^3.0.0",
"typedoc-plugin-missing-exports": "^2.2.0",
"typedoc-plugin-rename-defaults": "^0.7.0",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18"
},
"packageManager": "yarn@4.1.1",
"workspaces": [
"packages/*"
],
"dependencies": {
"@changesets/cli": "^2.27.1",
"fastnoise-lite": "^1.1.1"
}
}