forked from aws-samples/simple-nft-marketplace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.15 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
{
"name": "simple-nft-marketplace",
"version": "1.0.0",
"description": "This project provides sample codes to build a simple NFT marketplace with Amazon Managed Blockchain. - AWS CDK to deploy backend API ([/provision](/provision)) - Contract written in Solidity ([/contract](/contract)) - Marketplace web UI ([/marketplace](/marketplace))",
"scripts": {
"deps:provision": "npm install --prefix provision",
"deps:marketplace": "npm install --prefix marketplace",
"deps:contract": "npm install --prefix contract",
"postinstall": "run-p deps:*",
"cleanup": "npm run destroy --prefix provision && rimraf deploy-settings.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aws-samples/simple-nft-marketplace.git"
},
"license": "MIT-0",
"bugs": {
"url": "https://github.com/aws-samples/simple-nft-marketplace/issues"
},
"homepage": "https://github.com/aws-samples/simple-nft-marketplace#readme",
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"aws-sdk": "^2.1354.0",
"chalk": "^4.1.2",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
}
}