-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.65 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
45
46
47
48
49
50
51
52
53
{
"name": "tanya.in",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"dev": "turbo dev --filter=web",
"db:push": "bun run workspace apps/web db:push",
"db:studio": "bun run workspace apps/web db:studio",
"format": "turbo format --continue -- --cache --cache-location node_modules/.cache/.prettiercache",
"format:fix": "turbo format --continue -- --write --cache --cache-location node_modules/.cache/.prettiercache",
"lint": "turbo lint --continue -- --cache --cache-location node_modules/.cache/.eslintcache",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
"lint:ws": "bun x sherif@latest",
"postinstall": "bun lint:ws",
"typecheck": "turbo typecheck",
"prepare": "husky install",
"ui-add:shadcn": "turbo shadcn:add",
"ui-add:nextui": "turbo nextui:add",
"workspace": "bun ./scripts/workspace.ts"
},
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@tanya.in/prettier-config": "*",
"@turbo/gen": "^1.13.3",
"husky": "^7.0.4",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"turbo": "^1.13.3",
"typescript": "^5.4.5"
},
"prettier": "@tanya.in/prettier-config",
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"bun format:fix",
"bun lint"
],
"**/*.{json,css,scss,md,webmanifest}": [
"bun lint"
]
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*",
"tooling/*"
]
}