-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.97 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.97 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "website",
"version": "1.0.0",
"type": "module",
"scripts": {
"prepare": "test -d node_modules/husky && husky",
"typecheck:libraries": "bun --filter '@library/*' typecheck",
"typecheck:modules": "bun --filter '@module/*' typecheck",
"typecheck:server": "bun --filter './apps/server/*' typecheck",
"build:web": "bun --filter './apps/web/*' build",
"validate:pr": "bun run typecheck:libraries && bun run typecheck:modules && bun run typecheck:server && bun run build:web",
"test": "bun --filter '*' test",
"start": "docker compose pull && docker compose down && docker compose up -d",
"stop": "docker compose down",
"update": "docker compose pull && docker compose up -d"
},
"author": "Soulike",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@types/bun": "catalog:",
"@types/node": "catalog:",
"eslint": "catalog:",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"typescript": "catalog:"
},
"prettier": {
"singleQuote": true,
"jsxSingleQuote": true,
"bracketSpacing": false,
"tabWidth": 2
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"workspaces": [
"apps/*/*",
"modules/*/*",
"libraries/*/*",
"configs/*"
],
"catalog": {
"@ant-design/icons": "^6.1.0",
"@koa/bodyparser": "^6.0.0",
"@koa/router": "^15.1.0",
"@types/bun": "^1.2.14",
"@types/koa": "^3.0.0",
"@types/koa-compose": "^3.2.9",
"@types/node": "^24.10.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.0.15",
"antd": "^6.1.0",
"eslint": "^10.0.2",
"koa": "^3.1.1",
"koa-compose": "^4.1.0",
"koa-session": "^7.0.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router": "^7.10.1",
"typescript": "^5.9.3",
"vite": "^7.2.7",
"vitest": "^4.0.15"
}
}