-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.01 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
{
"dependencies": {},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"commitizen": "4.3.0",
"husky": "9.1.4",
"lint-staged": "15.2.8",
"prettier": "3.3.2",
"turbo": "2.0.4"
},
"engines": {
"node": ">=20"
},
"lint-staged": {
"*.{ts,tsx,json,md}": "prettier --ignore-unknown --write",
"*.{ts,tsx}": "eslint --cache --fix"
},
"name": "arthistory",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"build": "turbo build",
"clean": "rm -rf node_modules build apps/**/node_modules packages/**/node_modules apps/**/dist apps/**/build packages/**/dist packages/**/build apps/**/.next",
"dev": "turbo dev",
"format": "prettier --write \"**/*.{json,js,ts,tsx,md}\"",
"lint": "turbo lint",
"prepare": "husky || exit 0"
},
"version": "0.0.0-development",
"workspaces": [
"apps/*",
"packages/*"
]
}