-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.35 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.35 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
36
37
38
39
40
41
42
43
44
{
"name": "tracker-hub",
"private": true,
"version": "1.0.0",
"packageManager": "pnpm@9.15.0",
"scripts": {
"bootstrap": "pnpm install",
"build": "pnpm -r build",
"lint": "pnpm -r lint",
"format": "pnpm -r format --if-present",
"dev:frontend": "pnpm --filter frontend dev",
"dev:backend": "pnpm --filter backend start:dev",
"dev:dashboard": "pnpm --filter dashboard dev",
"test": "pnpm -r test --if-present",
"typecheck": "pnpm -r exec tsc --noEmit",
"release:core": "pnpm --filter @tracker/core build && pnpm --filter @tracker/core pack",
"clean": "pnpm -r exec rm -rf dist node_modules"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"devDependencies": {
"@nestjs/cli": "^10.2.1",
"@nestjs/schematics": "^10.0.2",
"@types/node": "^20.10.0",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@vitejs/plugin-react": "^4.2.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.1.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsup": "^7.3.0",
"typescript": "^5.7.2",
"vite": "^5.0.2"
}
}