-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
43 lines (43 loc) · 1.6 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
{
"private": true,
"scripts": {
"prepare": "yarn run clean && yarn run build",
"clean": "lerna run clean",
"build": "tsc --build tsconfig.build.json && yarn --cwd examples build",
"watch:tsc": "tsc --build --watch tsconfig.build.json",
"watch": "concurrently -n sprotty,examples -c blue,green, \"yarn --cwd examples watch\" \"yarn run watch:tsc\"",
"lint": "eslint {**/src/**/*.ts,**/src/**/*.tsx}",
"lint:fix": "eslint {**/src/**/*.ts,**/src/**/*.tsx} --fix",
"test": "vitest run --config vite.config.mts",
"coverage": "vitest run --coverage --config vite.config.mts",
"publish:prepare": "lerna version --ignore-scripts --yes --no-push",
"publish:latest": "lerna publish from-git --yes --no-push",
"publish:next": "SHA=$(git rev-parse --short HEAD) && lerna publish preminor --exact --canary --preid next.${SHA} --dist-tag next --no-git-reset --no-git-tag-version --no-push --ignore-scripts --yes --no-verify-access"
},
"devDependencies": {
"@types/node": "~18.19.3",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitest/coverage-v8": "~1.0.2",
"eslint": "^8.53.0",
"concurrently": "~8.2.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-no-null": "^1.0.2",
"lerna": "^7.3.0",
"reflect-metadata": "~0.1.14",
"semver": "^7.5.4",
"shx": "^0.3.4",
"typescript": "~5.2.2",
"vite": "~5.1.8",
"vitest": "~1.0.2"
},
"volta": {
"node": "18.19.0",
"yarn": "1.22.21"
},
"workspaces": [
"packages/*",
"examples"
]
}