-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.04 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.04 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": "dp-otp-sln",
"version": "0.0.0",
"type": "module",
"private": "true",
"scripts": {
"start": "cd Server && dotnet watch",
"lint": "npm run typecheck && npm run eslint && npm run prettier",
"lint:fix": "npm run typecheck && npm run eslint:fix && npm run prettier:fix",
"eslint": "eslint \"**/*.{cjs,mjs,js,cts,mts,ts,tsx}\"",
"eslint:fix": "eslint \"**/*.{cjs,mjs,js,cts,mts,ts,tsx}\" --fix",
"prettier": "prettier --list-different \"**/*.{cjs,mjs,js,cts,mts,ts,tsx,yaml,json}\"",
"prettier:fix": "prettier --write \"**/*.{cjs,mjs,js,cts,mts,ts,tsx,yaml,json}\"",
"typecheck": "dotnet build -t:Build && tsc -b"
},
"engines": {
"node": ">=20.8.1",
"npm": "use-pnpm",
"pnpm": ">=8.10.5"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.2.5",
"typescript": "^5.4.3"
},
"pnpm": {
"overrides": {
}
}
}