forked from SAP/ui5-language-assistant
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
107 lines (107 loc) · 3.23 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
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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"test-packages/*"
],
"nohoist": [
"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-git --yes",
"compile": "turbo run compile",
"ci": "turbo run ci",
"preci": "turbo run coverage",
"compile:watch": "yarn run clean && tsc --build --watch",
"format:fix": "prettier --write \"**/*.@(js|ts|json|md)\" --ignore-path=.gitignore",
"lint": "turbo run lint",
"ci:subpackages": "lerna run ci",
"test": "vitest",
"pretest": "turbo run pretest",
"prebuild": "yarn run clean",
"prebundle": "turbo run clean",
"build": "turbo run build",
"bundle": "turbo run bundle",
"package": "turbo run package",
"format:validate": "turbo run format:validate",
"coverage": "vitest run --coverage",
"clean": "turbo 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"
},
"devDependencies": {
"@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/klaw-sync": "6.0.0",
"@types/lodash": "4.14.168",
"@types/mocha": "9.1.1",
"@types/rimraf": "3.0.0",
"@types/sinon": "9.0.10",
"@types/sinon-chai": "3.2.5",
"@typescript-eslint/eslint-plugin": "4.14.0",
"@typescript-eslint/parser": "4.14.0",
"@vitest/coverage-c8": "^0.23.1",
"@vitest/coverage-istanbul": "^0.23.1",
"chai": "4.2.0",
"conventional-changelog-cli": "2.1.1",
"coveralls": "3.1.0",
"cz-conventional-changelog": "3.3.0",
"deep-equal-in-any-order": "1.0.28",
"eslint": "7.18.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-eslint-comments": "3.2.0",
"fs-extra": "9.1.0",
"glob": "7.1.6",
"husky": "8.0.1",
"klaw-sync": "6.0.0",
"lerna": "3.22.1",
"lint-staged": "10.5.3",
"make-dir": "3.1.0",
"mocha": "10.0.0",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"shx": "0.3.3",
"simple-git": "3.12.0",
"sinon": "9.2.3",
"sinon-chai": "3.5.0",
"source-map-support": "0.5.19",
"turbo": "^1.4.5",
"typescript": "4.8.2",
"vitest": "^0.23.1",
"webpack": "5.36.2",
"webpack-cli": "4.4.0"
},
"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"
]
}
}