-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.15 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.15 KB
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
{
"name": "recommend-scp",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@10.28.2",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "eslint . --no-error-on-unmatched-pattern",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,yaml,yml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,yaml,yml}\"",
"type-check": "turbo run type-check",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"postinstall": "lefthook install"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@eslint/js": "^9.39.2",
"@supabase/supabase-js": "^2.94.1",
"dotenv": "^16.4.7",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^17.23.2",
"find-up": "7",
"lefthook": "^2.0.13",
"prettier": "^3.7.4",
"tsx": "^4.19.2",
"turbo": "^2.3.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.52.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lefthook",
"sharp",
"unrs-resolver"
]
}
}