-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 769 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 769 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
{
"name": "maill-frontend",
"version": "0.0.0",
"private": true,
"license": "MIT",
"author": "xdb",
"packageManager": "pnpm@9.0.0",
"scripts": {
"dev:user": "pnpm --filter user dev",
"dev:admin": "pnpm --filter admin dev",
"build:user": "pnpm --filter user build",
"build:admin": "pnpm --filter admin build",
"lint": "pnpm -r lint",
"typecheck": "pnpm -r typecheck"
},
"devDependencies": {
"typescript": "^5.4.5",
"prettier": "^3.2.5",
"eslint": "^8.57.0",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0"
},
"engines": {
"node": ">=18"
}
}