-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"scripts": {
"watch": "tsup --watch",
"build": "tsup && prisma generate",
"dev": "cross-env NODE_ENV=development nodemon dist/index.js",
"start": "cross-env NODE_ENV=production node dist/index.js",
"test": "vitest",
"prisma:db": "prisma db push",
"prisma:generate": "prisma generate"
},
"devDependencies": {
"@solana/web3.js": "^1.75.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^18.15.11",
"axios": "^1.3.5",
"cross-env": "^7.0.3",
"nodemon": "^2.0.22",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vitest": "^0.30.1"
},
"dependencies": {
"@candypay/kysely-planetscale": "^0.0.2",
"@candypay/planetscale-database-js": "^0.0.5",
"@prisma/client": "^4.12.0",
"bs58": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"envalid": "^7.3.1",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"helius-sdk": "^1.0.3",
"ioredis": "^5.3.1",
"kysely": "^0.24.2",
"prisma": "^4.12.0"
}
}