-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
43 lines (43 loc) · 1.18 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
{
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"clean": "turbo clean",
"typecheck": "turbo typecheck",
"db:generate": "turbo db:generate",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md}\"",
"prepare": "husky install",
"generate-types": "ts-node scripts/generate-template-types.ts",
"release": "turbo run build lint --filter=./packages/* && changeset version && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@turbocharger/ts-config": "*",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"eslint": "^8.48.0",
"husky": "^8.0.0",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.3",
"ts-node": "^10.9.1",
"turbo": "^1.11.1"
},
"lint-staged": {
"(apps|packages)/**/*.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.json": [
"prettier --write"
]
},
"packageManager": "yarn@1.22.19",
"workspaces": [
"apps/*",
"packages/*"
]
}