-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "cnft-api",
"version": "1.0.0",
"description": "cNFT API as a Service",
"main": "index.js",
"scripts": {
"clean": "rimraf ./build",
"build": "npm run clean && tsc",
"start": "node src",
"local": "ts-node --esm src/index.ts",
"dev": "nodemon src -e ts,json --exec 'npm run local'"
},
"keywords": [
"compressed nft",
"metaplex",
"cnft",
"api as a service",
"backend",
"typescript",
"nodejs",
"solana"
],
"author": "Wilfred Almeida",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/node": "^20.3.2",
"@types/pg": "^8.10.2",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.5"
},
"dependencies": {
"@metaplex-foundation/js": "^0.19.4",
"@metaplex-foundation/mpl-bubblegum": "^0.7.0",
"@metaplex-foundation/mpl-token-metadata": "^2.12.0",
"@project-serum/anchor": "^0.26.0",
"@solana/spl-account-compression": "^0.1.8",
"@solana/spl-token": "^0.3.7",
"@solana/web3.js": "^1.78.0",
"@supabase/supabase-js": "^2.26.0",
"@unkey/api": "^0.6.11",
"axios": "^1.4.0",
"bip39": "^3.1.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"jose": "^4.14.4",
"micro-ed25519-hdkey": "^0.1.2",
"ulid": "^2.3.0",
"winston": "^3.9.0"
}
}