-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
50 lines (50 loc) · 1.47 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
{
"name": "@js-draw/monorepo",
"private": true,
"version": "0.0.0",
"scripts": {
"dist-test": "lerna run dist-test",
"build": "lerna run build",
"doc": "typedoc --options typedoc.json",
"watch-docs": "typedoc --watch --options typedoc.json",
"test": "jest",
"lint": "eslint",
"format": "prettier --write",
"lint-staged": "lint-staged",
"lint-ci": "eslint . --max-warnings=0",
"format-ci": "prettier --check .",
"build-translation-templates": "lerna run build-translation-templates",
"translation-template-to-ts": "ts-node scripts/markdownTranslationFormToTs.ts",
"preinstall": "git config core.hookspath .githooks",
"postinstall": "yarn run build",
"publish-ci": "lerna publish from-package --yes",
"version-bump": "lerna version --no-push --no-git-tag-version && yarn"
},
"workspaces": [
"packages/*",
"docs/examples/*",
"docs/demo",
"docs/debugging/*"
],
"devDependencies": {
"@eslint/js": "9.14.0",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-no-unsanitized": "4.1.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jsdom": "25.0.1",
"lerna": "8.1.8",
"lint-staged": "13.2.3",
"prettier": "3.3.3",
"ts-jest": "29.1.2",
"typedoc": "0.27.3",
"typescript": "5.7.2",
"typescript-eslint": "8.17.0"
},
"//": "jest-environment-jsdom currently uses jsdom v20. To prevent deprecation warnings in CI, use v25 instead.",
"resolutions": {
"jsdom": "25.0.1"
},
"packageManager": "[email protected]"
}