-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.59 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.59 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
{
"name": "@ulixee/shared-monorepo",
"private": true,
"version": "0.0.1",
"description": "Shared Ulixee and Unblocked projects",
"license": "MIT",
"scripts": {
"prepare": "husky",
"build": "yarn && yarn tsc && cd build && yarn",
"build:dist": "shx rm -rf build-dist && tsc -b tsconfig.dist.json && ulx-repo-after-build --dist",
"copy:dist": "ulx-repo-after-build --dist",
"copy:build": "ulx-repo-after-build",
"tsc": "tsc -b -i tsconfig.json && ulx-repo-after-build",
"watch": "tsc -b -i -w tsconfig.json",
"clean": "tsc -b --clean tsconfig.json",
"test": "yarn copy:build && yarn test:build",
"test:build": "cd ./build && cross-env NODE_ENV=test jest",
"lint": "eslint --cache ./",
"version:check": "ulx-repo-version-check fix",
"version:bump": "ulx-repo-version-bump",
"publish:all": "yarn workspaces foreach --topological-dev npm publish --access public"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@lerna-lite/version": "^3.9.1",
"@types/jest": "^29.5.11",
"@types/node": "^18.19.10",
"@ulixee/repo-tools": "^1.0.33",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"husky": "^9.0.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"shx": "^0.3.3",
"typescript": "~5.6.2"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.json": [
"prettier --write"
]
},
"workspaces": [
"net",
"commons"
],
"packageManager": "yarn@1.22.21+sha256.dbed5b7e10c552ba0e1a545c948d5473bc6c5a28ce22a8fd27e493e3e5eb6370"
}