-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.71 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
{
"name": "essex-toolkit",
"description": "A set of packages for developers",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/essex-toolkit.git"
},
"author": "David Tittsworth <[email protected]>",
"contributors": [
"David Tittsworth <[email protected]>",
"Nathan Evans <[email protected]>",
"Chris Trevino <[email protected]>",
"Amber Hoak <[email protected]>",
"Eric Kimbrel <[email protected]>",
"Derek Worthen <[email protected]>",
"Dayenne Souza <[email protected]>"
],
"license": "MIT",
"private": true,
"engines": {
"node": ">= 18.0"
},
"scripts": {
"_release_packages": "turbo run release --parallel",
"_ci_packages": "turbo run ci",
"ci_force": "turbo run ci --force --no-cache",
"_version_cut": "yarn version apply --all",
"_check_packages": "turbo run check",
"check": "biome ci .",
"check_deps": "turbo run check-deps",
"fix": "biome check --write --unsafe .",
"format": "biome format . --write",
"build": "turbo run build --force",
"clean": "turbo run clean --parallel",
"test": "turbo run test",
"check-deps": "turbo run check-deps",
"start": "turbo run start --parallel",
"ci": "run-s check _ci_packages",
"stories": "yarn start:storybook",
"is_clean": "essex git-is-clean",
"release": "run-s clean _version_cut ci_force _release_packages",
"update_sdks": "yarn dlx @yarnpkg/sdks vscode"
},
"devDependencies": {
"@biomejs/biome": "^1.8.2",
"@essex/scripts": "^27.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.8",
"@types/react": "^18.3.3",
"npm-run-all": "^4.1.5",
"turbo": "2.0.4",
"typescript": "^5.5.2"
},
"workspaces": [
"javascript/*"
],
"packageManager": "[email protected]"
}