-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.73 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.73 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
{
"name": "letletme-api",
"version": "1.0.50",
"type": "module",
"scripts": {
"test": "bun test",
"test:watch": "bun test --watch",
"dev": "bun run --watch src/index.ts",
"lint": "eslint . --ext .ts --ignore-pattern 'tests/**'",
"lint:fix": "eslint . --ext .ts --ignore-pattern 'tests/**' --fix",
"format": "prettier --write \"**/*.{ts,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,json,md}\"",
"db:generate": "drizzle-kit generate",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@elysiajs/bearer": "^1.2.0",
"@elysiajs/cookie": "^0.8.0",
"@elysiajs/static": "^1.2.0",
"@elysiajs/swagger": "^1.2.2",
"@node-rs/argon2": "^2.0.2",
"@types/lodash-es": "^4.17.12",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.40.0",
"drizzle-typebox": "^0.3.0",
"elysia": "latest",
"elysia-http-status-code": "^1.0.9",
"fp-ts": "^2.16.9",
"ioredis": "^5.6.0",
"lodash-es": "^4.17.21",
"mysql2": "^3.13.0",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"pino-roll": "^3.0.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/ioredis": "^5.0.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"bun-types": "^1.2.5",
"drizzle-kit": "^0.30.5",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.5.3",
"typescript-eslint": "^8.26.1"
},
"module": "src/index.js"
}