forked from nestjs/bull
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.98 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 install",
"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": "17.4.2",
"@commitlint/config-angular": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.4",
"husky": "8.0.3",
"jest": "29.3.1",
"lerna": "6.4.1",
"lerna-changelog": "2.2.0",
"lint-staged": "13.1.0",
"prettier": "2.8.2",
"rimraf": "4.0.4",
"sort-package-json": "2.1.0",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.2",
"typescript": "4.9.4"
}
}