-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.54 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.54 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
{
"name": "cssg-admin",
"module": "index.ts",
"type": "module",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"@eslint/js": "^9",
"@types/bun": "latest",
"eslint": "^9",
"eslint-config-prettier": "^10",
"prettier": "^3",
"prettier-plugin-tailwindcss": "^0.6",
"typescript": "^5",
"typescript-eslint": "^8"
},
"scripts": {
"dev:all": "bun --filter \"*\" dev",
"dev:frontend": "bun --filter frontend dev",
"dev:backend": "bun --filter backend dev",
"lint:all": "bun run --filter \"*\" lint",
"lint:shared": "bun run --filter @cssg/shared lint",
"lint:backend": "bun run --filter backend lint",
"lint:frontend": "bun run --filter frontend lint",
"format:all": "bun run --filter \"*\" format",
"format:shared": "bun run --filter @cssg/shared format",
"format:frontend": "bun run --filter frontend format",
"format:backend": "bun run --filter backend format",
"format:check:all": "bun run --filter \"*\" format:check",
"test:all": "bun run --filter \"*\" test",
"test:shared": "bun run --filter shared test",
"test:backend": "bun run --filter backend test",
"test:coverage": "bun run --filter \"*\" test --coverage",
"test:coverage:shared": "bun run --filter shared test --coverage",
"test:coverage:backend": "bun run --filter backend test --coverage",
"build:backend": "docker build -f apps/backend/Dockerfile . --tag cssg-admin-backend",
"docker:start:backend": "docker run -p 8787:8787 cssg-admin-backend"
}
}