forked from odata2ts/odata2ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.94 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
{
"name": "@odata2ts/workspace-core",
"version": "1.0.0",
"private": true,
"description": "Root project for odata2ts",
"license": "MIT",
"repository": "[email protected]:odata2ts/odata2ts.git",
"homepage": "https://odata2ts.github.io/",
"scripts": {
"build": "yarn clean && lerna run build",
"check-circular-deps": "lerna run check-circular-deps",
"clean": "rimraf coverage",
"clear-cache": "lerna run --parallel clear-cache",
"coverage": "jest --coverage",
"generate-from-url": "yarn workspace @odata2ts/example-bookshop generate-from-url",
"int-test": "lerna run --parallel int-test",
"postversion": "lerna publish from-git",
"release": "env-cmd -f .env.local --no-override lerna version",
"start-cap": "yarn workspace @odata2ts/example-bookshop start",
"test": "lerna run --parallel test -- --no-cache",
"test-examples": "lerna run --scope '*/example-*' --parallel test",
"type-test": "lerna run --parallel type-test",
"version": "yarn install && git add yarn.lock"
},
"devDependencies": {
"@lerna-lite/cli": "^2.4.1",
"@lerna-lite/publish": "^2.4.1",
"@lerna-lite/run": "^2.4.1",
"@lerna-lite/version": "^2.4.1",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.0",
"env-cmd": "^10.1.0",
"husky": "^8.0.3",
"import-sort-style-module": "^6.0.0",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"madge": "^6.1.0",
"prettier": "^2.8.8",
"prettier-plugin-import-sort": "^0.0.7",
"prettier-plugin-package": "^1.3.0",
"prettier-plugin-properties": "^0.2.0",
"rimraf": "^5.0.1",
"typescript": "^5.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"lint-staged": {
"*.{xml,js,jsx,ts,tsx,json,css,md}": [
"prettier --write"
]
},
"workspaces": [
"packages/*",
"examples/*"
]
}