forked from fjodor-rybakov/discord-nestjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.06 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
{
"name": "discord-nestjs",
"private": true,
"workspaces": [
"packages/**/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
"build": "lerna run build --no-private",
"format": "prettier --write \"packages/**/*.ts\" --ignore-path .gitignore",
"prepublish": "npm run build",
"publish": "lerna publish -m \"chore: Publish release\" --no-private",
"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"
},
"devDependencies": {
"husky": "7.0.4",
"lerna": "4.0.0",
"lint-staged": "12.3.4",
"prettier": "2.5.1",
"typescript": "4.6.2",
"@trivago/prettier-plugin-sort-imports": "3.2.0",
"@typescript-eslint/eslint-plugin": "5.13.0",
"@typescript-eslint/parser": "5.13.0",
"eslint": "8.10.0",
"eslint-config-prettier": "8.4.0",
"eslint-plugin-prettier": "4.0.0"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
}
}