-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "nft-collection-api",
"version": "1.0.0",
"description": "Node.js API for NFT collections supporting diverse features",
"main": "main.js",
"dependencies": {
"@kleros/file-to-ipfs": "^0.3.2",
"dotenv": "^10.0.0",
"web3": "^1.5.2"
},
"devDependencies": {},
"scripts": {
"test": "test",
"start": "node scripts/start.js",
"shuffle": "node scripts/shuffle.js",
"upload_images_gcs": "GOOGLE_APPLICATION_CREDENTIALS=gcs.json node scripts/upload_images_gcs.js",
"upload_images_ipfs": "node scripts/upload_images_ipfs.js",
"remove_none_traits": "node scripts/remove_none_traits.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FilosofiaCodigo/nft-collection-api.git"
},
"keywords": [
"nft",
"metadata",
"json",
"api"
],
"author": "Filosofía Código",
"license": "MIT",
"bugs": {
"url": "https://github.com/FilosofiaCodigo/nft-collection-api/issues"
},
"homepage": "https://github.com/FilosofiaCodigo/nft-collection-api#readme"
}