-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.24 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
{
"name": "neptun-github-app",
"version": "1.0.0",
"private": true,
"description": "The official neptun-software GitHub App.",
"author": "Jonas Fröller",
"license": "ISC",
"homepage": "https://neptun-github-app.vercel.app",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc",
"start": "probot run ./lib/index.js",
"test": "vitest",
"dev": "npm run build && cross-env LOG_LEVEL=trace npm run start",
"postinstall": "npm run build",
"lint": "biome ci .",
"format-organize-lint": "npx @biomejs/biome format --write ./src ./api ./database/migrations",
"db:pull": "drizzle-kit introspect --config drizzle.config.ts",
"db:studio": "drizzle-kit studio --config drizzle.config.ts --host 127.0.0.1"
},
"dependencies": {
"cross-env": "^7.0.3",
"drizzle-orm": "^0.33.0",
"drizzle-zod": "^0.5.1",
"postgres": "^3.4.4",
"probot": "^13.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^20.0.0",
"drizzle-kit": "^0.24.0",
"nock": "^14.0.0-beta.5",
"smee-client": "^2.0.0",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"engines": {
"node": ">= 18"
},
"type": "module"
}