-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.01 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.01 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
{
"name": "bootup-sajo",
"version": "1.0.0",
"description": "Bootup Sajo project with monorepo setup using Turbo and pnpm",
"main": "index.js",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md,yml,yaml}\"",
"clean": "turbo clean",
"check-types": "turbo run check-types",
"prepare": "lefthook install",
"hooks:install": "lefthook install",
"hooks:uninstall": "lefthook uninstall"
},
"devDependencies": {
"eslint-config-prettier": "^10.1.1",
"lefthook": "^1.11.13",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.12",
"turbo": "^2.5.4",
"typescript": "5.8.2"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.11.1",
"engines": {
"node": ">=18"
}
}