-
Notifications
You must be signed in to change notification settings - Fork 102
/
package.json
67 lines (67 loc) · 1.97 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
{
"name": "@nestjs/bull-workspace",
"version": "0.0.0",
"private": true,
"description": "Nest - modern, fast, powerful node.js web framework. Bull monorepo",
"homepage": "https://github.com/nestjs/bull",
"bugs": {
"url": "https://github.com/nestjs/bull/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nestjs/bull.git"
},
"license": "MIT",
"author": "Kamil Mysliwiec",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc -b -v packages",
"changelog": "lerna-changelog",
"clean": "tsc -b --clean packages",
"commitlint": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS",
"format": "prettier packages/**/*.ts --ignore-path ./.prettierignore --write",
"lint": "eslint 'packages/**/*.ts' --fix",
"prepare": "husky",
"prepublish:next": "yarn build",
"publish:next": "lerna publish --dist-tag next",
"prepublish:npm": "yarn build",
"publish:npm": "lerna publish",
"postpublish:npm": "yarn changelog | pbcopy",
"test": "lerna run test --parallel",
"test:dev": "lerna run test:dev --parallel",
"test:e2e": "lerna run test:e2e --stream",
"test:e2e:dev": "lerna run test:e2e:dev --stream"
},
"lint-staged": {
"*.ts": [
"prettier --write"
],
"package.json": [
"sort-package-json"
]
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-angular": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lerna": "8.1.9",
"lerna-changelog": "2.2.0",
"lint-staged": "15.2.10",
"prettier": "3.4.1",
"rimraf": "6.0.1",
"sort-package-json": "2.12.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.7.2"
}
}