-
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 626 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 626 Bytes
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
{
"name": "haptic",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write .",
"prepare": "husky"
},
"devDependencies": {
"@haptic/eslint-config": "workspace:*",
"eslint": "^8.56.0",
"husky": "^9.0.10",
"lint-staged": "^15.2.1",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"turbo": "latest"
},
"packageManager": "pnpm@8.9.0",
"lint-staged": {
"*.{svelte,js,ts}": [
"prettier --write",
"eslint --fix"
]
},
"engines": {
"node": ">=18"
}
}