-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
46 lines (46 loc) · 1.45 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
{
"private": true,
"workspaces": [
"packages/*",
"packages/sample/*"
],
"repository": {
"type": "git",
"url": "https://github.com/fjodor-rybakov/discord-nestjs"
},
"homepage": "https://github.com/fjodor-rybakov/discord-nestjs#readme",
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
"build": "lerna run build --no-private",
"test": "lerna run test --scope=@discord-nestjs/*",
"format": "prettier --write \"packages/**/*.ts\" --ignore-path .gitignore",
"prepublish:release": "npm run build",
"postinstall": "npm run build",
"publish:release": "lerna publish -m \"chore: Publish release\" --no-private --conventional-commits --create-release github",
"publish:beta": "lerna publish --canary --preid beta -m \"chore: Publish beta release\" --no-private",
"lint": "eslint \"packages/{common,core}/src/**/*.ts\" --fix",
"prepare": "husky install",
"check-updates": "npx npm-check-updates --deep",
"update": "npx npm-check-updates --deep -u"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.0.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"husky": "9.0.10",
"lerna": "8.1.2",
"lint-staged": "15.2.2",
"prettier": "3.2.5"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"overrides": {
"class-validator": ">=0.14.0"
}
}