-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.9 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.9 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@candidelabs/safe-recovery-service",
"version": "0.0.1",
"private": true,
"main": "src/index.ts",
"scripts": {
"build:env": "./scripts/buildenv.sh",
"start": "bun ./src/index.ts",
"dev": "bun --watch ./src/index.ts",
"test": "jest",
"lint": "eslint . --ext .js,.ts && tsc --noEmit",
"lint:fix": "eslint . --ext .js,.ts --fix",
"prettier": "prettier --check '**'",
"prettier:fix": "prettier --write '**'"
},
"dependencies": {
"@aws-sdk/client-kms": "^3.734.0",
"@prisma/client": "^6.2.1",
"@sentry/bun": "^9.5.0",
"asn1.js": "^5.4.1",
"compression": "^1.7.5",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"ethers": "^5.6.9",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"http-status": "^2.1.0",
"joi": "^17.13.3",
"ky": "^1.7.5",
"morgan": "^1.10.0",
"node-cron": "^3.0.3",
"nodemailer": "^7.0.10",
"sugar": "^2.0.6",
"twilio": "^5.4.2",
"validator": "^13.12.0",
"winston": "^3.17.0",
"winston-transport": "^4.9.0",
"triple-beam": "^1.4.1",
"siwe": "^3.0.0"
},
"devDependencies": {
"@types/bun": "^1.2.0",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/morgan": "^1.9.9",
"@types/node": "^22.10.7",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.17",
"@types/supertest": "^6.0.2",
"@types/validator": "^13.12.2",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"abstractionkit": "^0.2.13",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-unused-imports": "^4.1.4",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"prisma": "^6.2.1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.6",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}