-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.81 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
{
"name": "business-visa-server",
"version": "1.0.0",
"description": "business-visa-server",
"main": "src/index.ts",
"license": "MIT",
"type": "module",
"scripts": {
"start": "node dist/index.js",
"dev": "pnpm nodemon",
"build": "tsc --build",
"lint": "pnpm eslint --no-cache ./src/**/*.ts",
"lint:fix": "pnpm eslint --no-cache --fix ./src/**/*.ts",
"prepare": "husky install",
"prettier:check": "pnpm prettier --check .",
"prettier:write": "pnpm prettier --write .",
"db:introspect": "pnpm drizzle-kit introspect:mysql",
"db:push": "pnpm drizzle-kit push:mysql",
"db:studio": "pnpm drizzle-kit studio",
"db:generate": "pnpm drizzle-kit generate:mysql",
"db:drop": "pnpm drizzle-kit drop",
"scripts:update-earnings": "pnpm ts-node --esm ./src/scripts/updateBusinessVisaHoldersEarnings.ts",
"scripts:update-expiry": "pnpm ts-node --esm ./src/scripts/updateBusinessVisaHolderExpiryDate.ts",
"docker:build": "docker build -t business-visa/server --platform=linux/amd64 .",
"docker:run": "docker run --env-file .env business-visa/server"
},
"dependencies": {
"@planetscale/database": "^1.16.0",
"@solana/web3.js": "^1.91.4",
"axios": "^1.6.8",
"cors": "^2.8.5",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.30.8",
"express": "^4.19.2",
"express-rate-limit": "^7.2.0",
"helmet": "^7.1.0",
"http-status": "^1.7.4",
"imagekit": "^5.0.1",
"isomorphic-fetch": "^3.0.0",
"mysql2": "^3.9.4",
"node-cron": "^3.0.3",
"nodemon": "^3.1.0",
"resend": "^3.2.0",
"ts-node": "^10.9.2",
"undici": "^6.13.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"drizzle-kit": "^0.20.14",
"esbuild-register": "^3.5.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.2.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.11",
"lint-staged": ">=15.2.2",
"prettier": "3.2.5",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"zod": "^3.22.4"
},
"lint-staged": {
"*.{ts,js,json}": [
"prettier --write"
]
}
}