-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 735 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 735 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": "fibapp",
"description": "an overcomplicated fibonacci calculator",
"private": false,
"author": "Thomas",
"scripts": {
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"build": "turbo run build",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"prepare": "husky"
},
"lint-staged": {
"*": "true"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"prettier": "^3.5.3",
"turbo": "^2.4.4",
"typescript": "5.8.2"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
}
}