forked from PrincipleStudios/ScaledGitApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.09 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
27
28
29
30
31
32
33
34
35
{
"name": "scaledgitapp-monorepo",
"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,mts,cts,ts,tsx}\"",
"eslint:fix": "eslint \"**/*.{cjs,mjs,js,mts,cts,ts,tsx}\" --fix",
"prettier": "prettier --list-different \"**/*.{cjs,mjs,js,mts,cts,ts,tsx,yaml,json}\"",
"prettier:fix": "prettier --write \"**/*.{cjs,mjs,js,mts,cts,ts,tsx,yaml,json}\"",
"typecheck": "dotnet build -t:PrepareForBuild && tsc -b",
"storybook": "pnpm --filter scaledgitapp-ui storybook"
},
"engines": {
"node": ">=20.8.1",
"pnpm": ">=8.10.5"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"pnpm": {
"overrides": {
"@vitejs/plugin-react": "^4.2.1"
}
}
}