-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.12 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": {
"dev": "tsc-watch --onSuccess \"node dist/index.js\"",
"build": "rimraf dist && tsc",
"start": "node dist/index.js",
"ts.check": "tsc --project tsconfig.json",
"add-build": "git add dist",
"pm2:build": "npm run build && pm2 start npm --name bitsport-bitpool-node -- run start"
},
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@metaplex-foundation/mpl-token-metadata": "^3.2.1",
"@raydium-io/raydium-sdk": "^1.3.1-beta.47",
"@solana/spl-token": "^0.4.6",
"@types/colors": "^1.2.1",
"@types/node-cron": "^3.0.11",
"axios": "^1.7.2",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"http": "^0.0.1-security",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.3.4",
"node-cron": "^3.0.3",
"rimraf": "^5.0.6",
"tsc-watch": "^6.2.0"
},
"devDependencies": {
"@solana/web3.js": "^1.91.8",
"@types/big.js": "^6.2.2",
"@types/bn.js": "^5.1.5",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6"
}
}