-
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) · 1010 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1010 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": "smash-tracker",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.9.0",
"scripts": {
"dev": "pnpm -r --parallel dev",
"build": "pnpm -r build",
"test": "pnpm --filter @smash-tracker/shared build && pnpm -r test",
"lint": "pnpm -r lint",
"typecheck": "pnpm --filter @smash-tracker/shared build && pnpm -r typecheck",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.4",
"prettier": "^3.6.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write"
]
}
}