forked from fjodor-rybakov/discord-nestjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.43 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
{
"name": "discord-nestjs",
"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",
"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": {
"@trivago/prettier-plugin-sort-imports": "3.3.0",
"@typescript-eslint/eslint-plugin": "5.31.0",
"@typescript-eslint/parser": "5.31.0",
"eslint": "8.20.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"lerna": "5.3.0",
"lint-staged": "13.0.3",
"prettier": "2.7.1"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
}
}