-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.46 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.46 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
{
"name": "ih3t",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "pnpm@10.20.0",
"scripts": {
"generate:changelog": "pnpm --filter @ih3t/build-changelog generate",
"build": "pnpm --filter @ih3t/backend build && pnpm --filter @ih3t/frontend build",
"build:backend": "pnpm --filter @ih3t/backend build",
"build:frontend": "pnpm --filter @ih3t/frontend build",
"dev:frontend": "pnpm --filter @ih3t/frontend dev",
"dev:backend": "pnpm --filter @ih3t/backend dev",
"docker:build": "docker build -t ih3t:latest .",
"docker:run": "docker run --rm -p 3000:3001 --name ih3t ih3t:latest",
"docker:run:env": "docker run --rm -p 3000:3001 --env-file packages/backend/.env --name ih3t ih3t:latest",
"lint": "pnpm exec eslint .",
"clean": "pnpm -r clean",
"type-check": "pnpm --filter @ih3t/shared exec tsc -b && pnpm --filter @ih3t/backend run type-check && pnpm --filter @ih3t/frontend run type-check",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^9.39.4",
"@stylistic/eslint-plugin": "^5.10.0",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"globals": "^17.4.0",
"husky": "^9.1.7",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2"
}
}