-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.56 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.56 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
{
"name": "app",
"version": "1.0.50",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "bun run --watch src/index.ts",
"build": "bun build --compile --minify-whitespace --minify-syntax --target bun --outfile server ./src/index.ts",
"db:push": "bunx prisma db push",
"db:studio": "bunx prisma studio",
"prisma:prod": "prisma migrate deploy",
"commit": "git-cz",
"lint": "bunx biome lint ./src",
"lint:fix": "bunx biome lint --write ./src",
"format": "bunx biome format ./src",
"format:fix": "bunx biome format --write ./src",
"start": "bun run src/index.ts"
},
"dependencies": {
"@commitlint/top-level": "^19.8.1",
"@elysiajs/cors": "^1.3.0",
"@elysiajs/jwt": "^1.3.0",
"@elysiajs/stream": "^1.1.0",
"@elysiajs/swagger": "^1.3.0",
"@prisma/client": "6.6.0",
"elysia": "^1.3.0",
"find-up": "6",
"ioredis": "^5.6.1",
"minio": "^8.0.5",
"ws": "^8.18.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/mime-types": "^2.1.4",
"bun-types": "1.2.10",
"cz-conventional-changelog": "^3.3.0",
"cz-git": "^1.11.1",
"eslint": "^9.26.0",
"globals": "^16.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"mime-types": "^3.0.1",
"prisma": "^6.7.0",
"typescript-eslint": "^8.32.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"module": "src/index.js",
"type": "module"
}