forked from solana-labs/chatgpt-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "solana-gpt-plugin",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/ngundotra/solana-gpt-plugin.git",
"author": "ngundotra <[email protected]>",
"license": "Apache-2.0",
"private": false,
"dependencies": {
"@coral-xyz/anchor": "^0.27.0",
"@metaplex-foundation/mpl-bubblegum": "^0.6.2",
"@metaplex-foundation/mpl-token-metadata": "^2.10.0",
"@solana/pay": "^0.2.5",
"@solana/spl-account-compression": "^0.1.7",
"@solana/spl-token": "^0.3.7",
"@solana/web3.js": "^1.75.0",
"@types/node": "^18.15.11",
"axios": "^1.3.5",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"cross-fetch": "^3.1.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"hyperspace-client-js": "^1.4.15",
"node-fetch": "^3.3.1",
"qrcode": "^1.5.1",
"sharp": "^0.32.0",
"typescript": "^5.0.4"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/qrcode": "^1.5.0",
"@types/sharp": "^0.31.1",
"ts-node": "^10.9.1"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"start": "ts-node src/index.ts",
"dev": "DEV=true ts-node src/index.ts"
}
}