-
-
Notifications
You must be signed in to change notification settings - Fork 114
/
package.json
190 lines (190 loc) · 6.74 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
{
"name": "keyshade-xyz",
"version": "2.8.0",
"license": "MPL-2.0",
"private": true,
"engineStrict": false,
"packageManager": "[email protected]",
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
},
"presetConfig": {
"releaseCommitMessageFormat": "chore(release): {{currentTag}} [skip ci]\n\n{{currentTag}}\n\n{{notes}}",
"types": [
{
"type": "feat",
"section": "🚀 Features"
},
{
"type": "fix",
"section": "🐛 Bug Fixes"
},
{
"type": "perf",
"section": "⚡ Performance Improvements"
},
{
"type": "revert",
"section": "🔙 Reverts"
},
{
"type": "docs",
"section": "📚 Documentation"
},
{
"type": "style",
"section": "💅 Styles"
},
{
"type": "chore",
"section": "🔧 Miscellaneous Chores"
},
{
"type": "refactor",
"section": "🔨 Code Refactoring"
},
{
"type": "test",
"hidden": true
}
]
}
}
],
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
},
"scripts": {
"dev": "turbo run dev",
"dev:api": "turbo run dev --filter=api",
"dev:web": "turbo run dev --filter=web",
"dev:platform": "turbo run dev --filter=platform",
"dev:cli": "turbo run dev --filter=cli",
"add:global": "pnpm add -w",
"add:api": "pnpm add --filter=api",
"add:web": "pnpm add --filter=web",
"add:platform": "pnpm add --filter=platform",
"add:cli": "pnpm add --filter=cli",
"lint": "turbo run lint",
"lint:api": "turbo run lint --filter=api",
"lint:web": "turbo run lint --filter=web",
"lint:platform": "turbo run lint --filter=platform",
"lint:cli": "turbo run lint --filter=cli",
"lint:api-client": "turbo run lint --filter=@keyshade/api-client",
"lint:secret-scan": "turbo run lint --filter=@keyshade/secret-scan",
"lint:schema": "turbo run lint --filter=@keyshade/schema",
"build": "turbo run build",
"build:api": "pnpm db:generate-types && turbo run build --filter=api",
"build:web": "pnpm build:api-client && turbo run build --filter=web",
"build:platform": "pnpm build:api-client && turbo run build --filter=platform",
"build:cli": "pnpm build:secret-scan && pnpm build:api-client && turbo run build --filter=cli",
"build:api-client": "pnpm build:schema && turbo run --filter=@keyshade/api-client build",
"build:schema": "turbo run build --filter=@keyshade/schema",
"build:secret-scan": "turbo run build --filter=@keyshade/secret-scan",
"start": "turbo run start",
"start:api": "turbo run start --filter=api",
"start:web": "turbo run start --filter=web",
"start:platform": "turbo run start --filter=platform",
"start:cli": "turbo run start --filter=cli",
"test": "turbo run test",
"test:api": "pnpm unit:api && pnpm e2e:api",
"unit:api": "pnpm run --filter=api unit",
"e2e:api": "pnpm run --filter=api e2e",
"test:web": "turbo run test --filter=web",
"test:platform": "turbo run test --filter=platform",
"test:api-client": "pnpm run --filter=api-client test",
"test:schema": "pnpm run --filter=schema test",
"test:secret-scan": "pnpm run --filter=secret-scan test",
"db:generate-types": "pnpm run --filter=api db:generate-types",
"db:generate-migrations": "pnpm run --filter=api db:generate-migrations",
"db:deploy-migrations": "pnpm run --filter=api db:deploy-migrations",
"db:validate": "pnpm run --filter=api db:validate",
"db:format": "pnpm run --filter=api db:format",
"db:reset": "pnpm run --filter=api db:reset",
"format": "prettier apps/**/*.{ts,tsx} packages/**/*.ts --write",
"prepare": "husky",
"sourcemaps:api": "turbo run sourcemaps --filter=api",
"docker:run:web": "docker run --env-file .env --name ks-web --rm -p 3000:3000 ks-web",
"docker:build:web": "docker build -t ks-web -f apps/web/Dockerfile .",
"docker:run:api": "docker run --env-file .env --name ks-api --rm -p 4200:4200 ks-api",
"docker:build:api": "docker build -t ks-api -f apps/api/Dockerfile .",
"docker:run:platform": "docker run --env-file .env --name ks-platform --rm -p 3025:3025 ks-platform",
"docker:build:platform": "docker build -t ks-platform -f apps/platform/Dockerfile ."
},
"devDependencies": {
"@sentry/cli": "^2.28.6",
"@sentry/webpack-plugin": "^2.14.2",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.5.11",
"ts-jest": "^29.1.0",
"tsconfig": "workspace:*",
"tsconfig-paths": "^4.2.0",
"turbo": "^2.3.3"
},
"dependencies": {
"@keyshade/api-client": "workspace:*",
"@keyshade/schema": "workspace:*",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.3",
"@semantic-release/release-notes-generator": "^14.0.0",
"@sentry/node": "^7.102.0",
"@sentry/profiling-node": "^7.102.0",
"@types/node": "^20.14.10",
"chalk": "^4.1.2",
"clsx": "^2.1.0",
"conventional-changelog-conventionalcommits": "8.0.0",
"conventional-changelog-writer": "8.0.0",
"framer-motion": "^11.2.9",
"million": "^3.0.5",
"moment": "^2.30.1",
"sharp": "^0.33.3",
"tailwind-merge": "^2.3.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.5.2",
"typescript-transform-paths": "^3.5.0",
"zod": "^3.23.6"
}
}