-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "daengle-client",
"version": "0.0.0",
"license": "MIT",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"preview": "turbo preview",
"prepare": "husky",
"daengle": "turbo dev --filter daengle",
"groomer": "turbo dev --filter groomer",
"vet": "turbo dev --filter vet",
"lint:styles": "stylelint \"**/*.styles.ts\""
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@daengle/eslint-config": "workspace:*",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.2.5",
"stylelint": "^15.0.0",
"turbo": "^2.3.0",
"typescript": "5.5.4",
"typescript-eslint": "^8.15.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --config ./.prettierrc --write -u"
],
"**/*.styles.ts": "stylelint --fix"
},
"packageManager": "pnpm@9.9.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"@commitlint/format": "^19.5.0",
"@tanstack/react-query": "^5.61.0"
}
}