-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.58 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
{
"name": "insidepoly-monorepo",
"private": true,
"workspaces": [
"packages/backend",
"packages/common",
"packages/frontend"
],
"scripts": {
"build": "pnpm run -r build",
"clean": "pnpm run -r clean",
"test": "pnpm run -r test",
"typecheck": "pnpm run -r typecheck",
"check": "pnpm lint && pnpm typecheck",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build:common": "cd packages/common && pnpm build",
"build:backend": "pnpm build:common && cd packages/backend && pnpm build",
"build:frontend": "pnpm build:common && cd packages/frontend && pnpm build",
"dev:backend": "pnpm build:common && cd packages/backend && pnpm dev",
"dev:frontend": "pnpm build:common && cd packages/frontend && pnpm dev",
"start:backend": "cd packages/backend && pnpm start",
"start:frontend": "cd packages/frontend && pnpm start"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@next/eslint-plugin-next": "^16.1.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react-hooks": "^7.0.1",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2"
}
}