-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 3.98 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 3.98 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"test-packages/*"
],
"nohoist": [
"vscode-ui5-language-assistant/prettier",
"vscode-ui5-language-assistant/@prettier/plugin-xml",
"vscode-ui5-language-assistant/@ui5-language-assistant/language-server",
"vscode-ui5-language-assistant/@ui5-language-assistant/language-server/**"
]
},
"scripts": {
"build:quick": "lerna run compile && lerna run bundle && lerna run package",
"release:version": "lerna version --force-publish",
"release:publish": "lerna publish from-package --yes",
"ci": "npm-run-all format:validate ci:subpackages legal:*",
"compile": "yarn run clean && tsc --build",
"compile:watch": "yarn run clean && tsc --build --watch",
"format:fix": "prettier --write \"**/*.@(js|ts|json|md)\" --ignore-path=.gitignore",
"format:validate": "prettier --check \"**/*.@(js|ts|json|md)\" --ignore-path=.gitignore",
"lint": "eslint . --ext .ts --fix --max-warnings=0 --ignore-path=.gitignore",
"ci:subpackages": "lerna run ci",
"test": "lerna run test",
"coverage": "lerna run coverage",
"clean": "lerna run clean",
"update-snapshots": "lerna run update-snapshots",
"legal:delete": "lerna exec \"shx rm -rf .reuse LICENSES\" || true",
"legal:copy": "lerna exec \"shx cp -r ../../.reuse .reuse && shx cp -r ../../LICENSES LICENSES\"",
"prepare": "node ./.husky/skip.js || husky install",
"hooks:pre-commit": "lint-staged",
"hooks:commit-msg": "commitlint -e",
"cset": "changeset",
"ci:version": "changeset version",
"postinstall": "patch-package"
},
"devDependencies": {
"@changesets/cli": "2.30.0",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@types/chai": "4.2.14",
"@types/deep-equal-in-any-order": "1.0.1",
"@types/fs-extra": "9.0.11",
"@types/jest": "29.2.6",
"@types/klaw-sync": "6.0.0",
"@types/lodash": "4.14.166",
"@types/rimraf": "3.0.0",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.14.0",
"chai": "4.2.0",
"cz-conventional-changelog": "3.3.0",
"deep-equal-in-any-order": "1.0.28",
"esbuild": "0.27.3",
"eslint": "7.18.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-eslint-comments": "3.2.0",
"fs-extra": "10.1.0",
"husky": "8.0.1",
"string-width": "4.2.3",
"strip-ansi": "6.0.1",
"wrap-ansi": "7.0.0",
"i18next": "19.0.2",
"jest": "29.5.0",
"jest-config": "29.5.0",
"jest-environment-node": "29.5.0",
"jest-extended": "3.2.3",
"jest-sonar": "0.2.16",
"klaw-sync": "6.0.0",
"lerna": "9.0.5",
"lint-staged": "10.5.3",
"mock-fs": "^5.2.0",
"npm-run-all": "4.1.5",
"patch-package": "^8.0.1",
"prettier": "2.8.7",
"rimraf": "3.0.2",
"shx": "0.3.3",
"ts-jest": "29.0.5",
"ts-node": "8.5.2",
"typescript": "4.9.4"
},
"lint-staged": {
"*.{js,ts,md,json}": [
"prettier --write"
],
"*.{ts}": [
"eslint --fix --max-warnings=0"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"setupFilesAfterEnv": [
"jest-extended/all"
]
},
"resolutions": {
"@babel/traverse": "^7.24.0",
"@isaacs/brace-expansion": "^5.0.1",
"axios": "^1.13.5",
"braces": "^3.0.3",
"cross-spawn": "^7.0.6",
"form-data": "^4.0.1",
"get-func-name": "^2.0.2",
"js-yaml": "^4.1.1",
"lodash": "^4.17.23",
"minimatch": "^10.2.3",
"test-exclude": "^7.0.2",
"qs": "^6.14.1",
"semver": "^7.6.0",
"string-width": "4.2.3",
"string-width-cjs": "npm:string-width@4.2.3",
"strip-ansi": "6.0.1",
"strip-ansi-cjs": "npm:strip-ansi@6.0.1",
"tar": "^7.5.8",
"tmp": "^0.2.4",
"wrap-ansi": "7.0.0",
"wrap-ansi-cjs": "npm:wrap-ansi@7.0.0",
"ws": "^8.18.0"
}
}