-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.9 KB
/
package.json
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "hyyypertool",
"version": "2024.11.3",
"private": true,
"type": "module",
"workspaces": [
"packages/~/app/*",
"packages/~/auth/*",
"packages/~/config/*",
"packages/~/infra/moncomptepro/*",
"packages/~/infra/crisp/*",
"packages/~/infra/zammad/*",
"packages/~/moderations/*",
"packages/~/organizations/*",
"packages/~/proxy/*",
"packages/~/users/*",
"packages/~/welcome/*",
"packages/hono-slotify"
],
"scripts": {
"build": "bun x npm-run-all --serial build:*",
"build:bun": "bun run ./scripts/build.ts",
"build:tailwind": "bun x tailwindcss -i ./packages/~/app/ui/tailwind.css -o ./public/built/tailwind.css",
"build:tsc": "bun x tsc --build",
"database:moncomptepro:migrator": "bun run database:moncomptepro:run migration",
"database:moncomptepro:run": "bun run --cwd packages/~/infra/moncomptepro/database",
"database:moncomptepro:seed": "bun run database:moncomptepro:run seed",
"dev": "tsx watch bin/src/index.ts",
"dev:api": "bun x run-z dev:api:clean dev:api:tsc dev:api:cp dev:api:format",
"dev:api:clean": "bun run --cwd packages/~/app/urls clean",
"dev:api:cp": "cp './packages/~/app/api/node_modules/.cache/tsc/src/index.d.ts' './packages/~/app/urls/src/pattern.d.ts'",
"dev:api:format": "bun run --cwd packages/~/app/urls format",
"dev:api:tsc": "bun run build:tsc",
"dev:inspect-brk": "tsx --inspect-brk bin/src/index.ts",
"dev:tailwind": "bun run build:tailwind --watch",
"e2e:install": "cd e2e && bun install",
"e2e:run": "cd e2e && bun run",
"fixtures:load": "bun x run-z database:moncomptepro:migrator database:moncomptepro:seed",
"format": "bun x prettier --check .",
"format:fix": "bun x prettier --write .",
"format:pkg": "bun x sort-package-json ./package.json ./packages/~/*/*/package.json ./e2e/package.json",
"format:tsconfig": "bun x @monorepo-utils/workspaces-to-typescript-project-references && bun run format:fix",
"postadd": "bun run format:tsconfig",
"renovate": "bun x npm-check-updates --packageManager bun --interactive --upgrade --deep",
"start": "tsx bin/src/index.ts",
"studio:moncomptepro": "bun run database:moncomptepro:run studio",
"test": "bun run test:type-check && bun run test:all",
"test:all": "bun test",
"test:inspect": "bun test --inspect-wait=localhost:6499/",
"test:type-check": "bun run build:tsc"
},
"prettier": {
"plugins": [
"prettier-plugin-organize-imports",
"prettier-plugin-tailwindcss"
],
"tailwindFunctions": [
"tv"
],
"tailwindPreserveWhitespace": true
},
"dependencies": {
"@gouvfr/dsfr": "1.12.1",
"@~/app.api": "workspace:*",
"@~/app.core": "workspace:*",
"consola": "3.2.3",
"dotenv": "16.4.5",
"hono": "4.6.10",
"tsx": "4.19.1"
},
"devDependencies": {
"@csmith/release-it-calver-plugin": "2023.12.0",
"@release-it/conventional-changelog": "9.0.3",
"@tsconfig/bun": "1.0.7",
"@~/config.tailwindcss": "workspace:*",
"bun-types": "1.1.30",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.1.0",
"prettier-plugin-tailwindcss": "0.6.8",
"release-it": "17.10.0",
"tailwindcss": "3.4.15",
"typescript": "5.6.3"
},
"overrides": {
"hono": "4.6.10"
},
"release-it": {
"git": {
"commitMessage": ":bookmark: release ${version}"
},
"github": {
"comments": {
"submit": true
},
"release": true
},
"hooks": {
"after:git:release": "git switch -c release/${version} && git push origin release/${version}"
},
"npm": {
"publish": false
},
"plugins": {
"@csmith/release-it-calver-plugin": {
"format": "yyyy.mm.minor"
},
"@release-it/conventional-changelog": {
"ignoreRecommendedBump": true,
"infile": "CHANGELOG.md",
"preset": {
"name": "angular"
}
}
}
}
}