-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 992 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
{
"private": true,
"scripts": {
"build": "turbo run build",
"build:user": "turbo run build --scope=user --include-dependencies --no-deps",
"dev": "turbo run dev",
"deploy": "npx vercel deploy",
"test": "turbo run test || true",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky"
},
"devDependencies": {
"eslint": "^8.48.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tsconfig": "*",
"turbo": "^1.12.4"
},
"name": "neatcode",
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"lint-staged": {
"apps/**/*.{js,ts,jsx,tsx}": [
"yarn format",
"yarn lint:fix"
],
"packages/**/!(config)/*.{js,ts,jsx,tsx}": [
"yarn format",
"yarn lint:fix"
],
"*.json": [
"prettier --write"
]
}
}