-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 990 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 990 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
31
32
33
34
35
36
37
38
{
"name": "station",
"version": "1.0.0",
"private": true,
"description": "Gaming guild and organization management portal",
"scripts": {
"dev": "turbo run dev",
"dev:backend": "pnpm --filter backend dev",
"dev:frontend": "pnpm --filter frontend dev",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"clean": "turbo run clean && rm -rf node_modules",
"typecheck": "turbo run typecheck",
"prepare": "husky install"
},
"devDependencies": {
"turbo": "^2.3.0",
"prettier": "^3.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6"
},
"lint-staged": {
"backend/**/*.{ts,tsx}": [
"pnpm --filter backend exec eslint --fix",
"prettier --write"
],
"*.{js,jsx,json,md}": [
"prettier --write"
]
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@10.22.0"
}