-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
37 lines (37 loc) · 1012 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
{
"private": true,
"scripts": {
"bot": "pnpm workspace bot run dev",
"bot:build": "pnpm workspace bot run build",
"bot:serve": "pnpm workspace bot run start",
"build": "turbo run build --parallel",
"check-types": "turbo run check-types --parallel --continue",
"dev": "turbo run dev --parallel",
"postinstall": "patch-package",
"lint": "turbo run lint --parallel --continue",
"prepare": "husky install",
"test": "turbo run test --parallel"
},
"workspaces": [
"apps/*"
],
"devDependencies": {
"@types/jest": "29.5.12",
"cross-env": "7.0.3",
"husky": "9.1.4",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.8",
"patch-package": "8.0.0",
"prettier": "3.3.3",
"prettier-package-json": "2.8.0",
"turbo": "2.0.12"
},
"lint-staged": {
"*.{js,ts,tsx,css,md}": "prettier --write",
"package.json": "prettier-package-json --write"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
}
}