-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.09 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
54
55
56
{
"name": "turbo",
"private": true,
"keywords": [
"turbo",
"react",
"nextjs",
"vite",
"monorepo",
"typescript",
"tailwindcss",
"eslint",
"prettier",
"pnpm",
"husky"
],
"author": {
"email": "[email protected]",
"name": "Serif Colakel",
"url": "https://github.com/serifcolakel"
},
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install"
},
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@serif/eslint-config": "workspace:*",
"@serif/tailwind-config": "workspace:*",
"@serif/typescript-config": "workspace:*",
"husky": "^8.0.3",
"prettier": "^3.1.1",
"turbo": "latest"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"turbo": {
"eslint": {
"extends": "@serif/eslint-config"
},
"typescript": {
"extends": "@serif/typescript-config"
},
"tailwind": {
"extends": "@serif/tailwind-config"
}
}
}