-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathpackage.json
69 lines (69 loc) · 2 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
{
"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",
"prepublish:npm": "yarn build",
"publish:next": "lerna publish --dist-tag next",
"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.1",
"@commitlint/config-angular": "19.7.0",
"@commitlint/config-conventional": "19.6.0",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.19.0",
"eslint": "9.19.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "5.2.3",
"globals": "15.14.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lerna": "8.1.9",
"lerna-changelog": "2.2.0",
"lint-staged": "15.4.3",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"sort-package-json": "2.14.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.7.3",
"typescript-eslint": "8.22.0"
}
}