-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 917 Bytes
/
package.json
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
{
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build --no-daemon",
"dev": "turbo run dev --parallel --no-daemon",
"dev:nextjs": "turbo run dev --filter=battleship-nextjs-app",
"dev:react": "turbo run dev --filter=battleship-react-app",
"lint": "turbo run lint --no-cache --no-daemon",
"format": "prettier --write \"**/*.{js,ts,tsx,json,md}\""
},
"devDependencies": {
"eslint": "9.18.0",
"husky": "9.1.7",
"lint-staged": "15.4.0",
"prettier": "2.8.8",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"turbo": "latest",
"typescript": "5.7.3"
},
"lint-staged": {
"apps/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"packages/battleship-*/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"*.json": [
"prettier --write"
]
},
"packageManager": "yarn@1.22.22"
}