-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 857 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 857 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
30
31
{
"name": "dayfront",
"version": "1.4.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.14.0",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm --parallel --filter @dayfront/api --filter @dayfront/web dev",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"test": "pnpm -r test",
"typecheck": "pnpm -r typecheck",
"verify": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test && pnpm build"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"esbuild": "0.28.1",
"eslint": "10.8.0",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.3",
"globals": "17.8.0",
"prettier": "3.9.6",
"typescript": "5.9.3",
"typescript-eslint": "8.65.0"
}
}