forked from microsoft/datashaper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.39 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
{
"name": "@datashaper/project",
"private": true,
"scripts": {
"_release_packages": "turbo run release",
"_cut_schema": "yarn node scripts/release-schema.mjs",
"_version_cut": "yarn version apply --all",
"_copy_versions": "yarn node scripts/copy-schemas.mjs",
"preinstall": "npx only-allow yarn",
"postinstall": "husky install",
"clean": "turbo run clean --parallel",
"build": "turbo run build",
"bundle": "turbo run bundle",
"lint": "turbo run lint",
"test": "turbo run test",
"start": "SB_QUIET=true turbo run start --parallel",
"deploy": "turbo run deploy",
"prettify": "essex prettify",
"ci": "turbo run ci",
"is_clean": "git diff-index HEAD --quiet || git status",
"release": "run-s clean _version_cut ci _release_packages _cut_schema _copy_versions",
"update_sdks": "yarn dlx @yarnpkg/sdks vscode"
},
"devDependencies": {
"@essex/eslint-config": "^20.3.5",
"@essex/eslint-plugin": "^20.3.8",
"@essex/jest-config": "^21.0.13",
"@essex/prettier-config": "^18.0.2",
"@essex/scripts": "^22.0.5",
"@types/jest": "^27.5.2",
"@types/node": "^18.0.0",
"@types/semver": "^7.3.10",
"arquero": "^4.8.8",
"eslint": "^8.18.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"semver": "^7.3.7",
"turbo": "^1.3.1",
"typescript": "^4.7.4"
},
"workspaces": [
"javascript/*"
],
"packageManager": "[email protected]"
}