-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 856 Bytes
/
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
{
"dependencies": {
"@logtail/pino": "^0.5.2",
"@neondatabase/serverless": "^0.10.4",
"@solana/spl-token": "^0.4.9",
"@solana/web3.js": "^1.98.0",
"discord.js": "^14.17.3",
"drizzle-orm": "^0.38.4",
"pg": "^8.13.1",
"pino": "^9.6.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/node": "^22.10.7",
"@types/pg": "^8.11.10",
"dotenv": "^16.4.7",
"drizzle-kit": "^0.30.2",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"pino-pretty": "^13.0.0",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"scripts": {
"start": "node ./dist/src/index.js",
"dev": "tsx ./src/index.ts",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\""
},
"type": "module"
}