-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.31 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
{
"name": "ark-market",
"private": true,
"engines": {
"node": ">=20.12.0"
},
"packageManager": "pnpm@9.2.0",
"scripts": {
"build": "turbo run build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"dev": "turbo watch dev",
"format": "turbo run format --continue -- --cache --cache-location node_modules/.cache/.prettiercache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location node_modules/.cache/.prettiercache",
"lint": "turbo run lint --continue -- --cache --cache-location node_modules/.cache/.eslintcache",
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest",
"postinstall": "pnpm lint:ws",
"typecheck": "turbo run typecheck",
"ui-add": "turbo run ui-add",
"pre-commit": "lint-staged",
"prepare": "husky"
},
"devDependencies": {
"@ark-market/prettier-config": "workspace:*",
"@turbo/gen": "^2.1.1",
"eslint": "^9.9.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"turbo": "^2.1.1",
"typescript": "^5.5.4"
},
"prettier": "@ark-market/prettier-config",
"lint-staged": {
"(apps|packages)/**/*.{js,ts,jsx,tsx}": [
"pnpm lint:fix"
]
}
}