-
-
Notifications
You must be signed in to change notification settings - Fork 128
/
package.json
42 lines (42 loc) · 934 Bytes
/
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
{
"name": "tgvcbot-turborepo",
"version": "0.0.0",
"description": "Telegram Bot to Play Music in Voice Chat",
"private": true,
"scripts": {
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"format": "prettier --write \"apps/**/*.{ts,js,css}\"",
"lint": "turbo run lint",
"prepare": "husky install"
},
"author": {
"email": "arnabxd@pm.me",
"name": "Arnab XD"
},
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/config-conventional": "17.0.3",
"commitlint": "17.0.3",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"turbo": "1.4.6",
"eslint": "8.20.0",
"eslint-config-prettier": "8.5.0"
},
"lint-staged": {
"**/*.ts": [
"eslint --fix",
"prettier --write"
]
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@mdx-js/react",
"webpack"
]
}
}
}