-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 915 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
{
"name": "express_template",
"version": "1.0.0",
"description": "Express template",
"main": "index.ts",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tsc --build",
"dev": "./init_migration.sh && npx tsx watch src/index.ts",
"start": "./init_migration.sh && npm run build && node dist/index.js"
},
"author": "june6x",
"license": "ISC",
"dependencies": {
"@solana/web3.js": "^1.91.4",
"@raydium-io/raydium-sdk": "^1.3.1-beta.50",
"bs58": "^5.0.0",
"@coral-xyz/anchor": "^0.30.0",
"@prisma/client": "^5.19.1",
"@prisma/extension-accelerate": "^1.0.0",
"body-parser": "^1.20.3",
"express": "^4.19.2",
"ethers": "^5.6.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.5.5",
"prisma": "^5.19.1",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
}
}