-
Notifications
You must be signed in to change notification settings - Fork 134
/
package.json
26 lines (26 loc) · 1.16 KB
/
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
{
"private": true,
"license": "MPL-2.0",
"scripts": {
"build": "pnpm --filter \"@wsh-2024/client\" --filter \"@wsh-2024/server\" --parallel run build",
"format": "pnpm run format:eslint && pnpm run format:prettier",
"format:eslint": "eslint --fix --ext mts,cts,ts,tsx,mjs,cjs,js,jsx . || true",
"format:prettier": "prettier --ignore-path .prettierignore --write '**/*.{mts,cts,ts,tsx,mjs,cjs,js,jsx,json}'",
"lint": "pnpm run \"/lint:.*/\"",
"lint:eslint": "eslint --ext mts,cts,ts,tsx,mjs,cjs,js,jsx .",
"lint:prettier": "prettier --ignore-path .prettierignore --check '**/*.{mts,cts,ts,tsx,mjs,cjs,js,jsx,json}'",
"lint:tsc": "tsc --noEmit",
"start": "pnpm --filter \"@wsh-2024/server\" run start",
"test": "pnpm --filter \"@wsh-2024/testing\" run start",
"test:debug": "pnpm --filter \"@wsh-2024/testing\" run start:debug"
},
"devDependencies": {
"@3846masa/configs": "github:3846masa/configs#0e9352c7ad57e51187647f2c4aa27baea842d149",
"eslint": "8.56.0",
"eslint-plugin-react": "7.34.0",
"eslint-plugin-react-hooks": "4.6.0",
"prettier": "3.1.1",
"typescript": "5.4.2"
},
"packageManager": "[email protected]"
}