-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (42 loc) · 1.54 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
{
"name": "nft-marketplace",
"version": "1.0.0",
"description": "NFT Marketplace template",
"main": "index.js",
"scripts": {
"cap:start": "cd ./cap && dfx deploy cap-router",
"cap:reset": "cd ./cap && rm -rf .dfx",
"dab:start": "cd ./dab && dfx deploy nft",
"dab:reset": "cd ./dab && rm -rf .dfx",
"crowns:deploy": "./.scripts/crowns/deploy-crowns.sh",
"crowns:reset": "cd ./crowns && rm -rf .dfx",
"wicp:deploy": "./.scripts/wicp/deploy-wicp.sh",
"wicp:balance-of": "./.scripts/wicp/balance-of.sh",
"wicp:reset": "cd ./wicp && rm -rf .dfx",
"marketplace:deploy": "./.scripts/marketplace/deploy-marketplace.sh",
"marketplace:healthcheck": "./.scripts/healthcheck.sh",
"marketplace:reset": "rm -rf .dfx",
"services:init": "git submodule update --init --recursive",
"services:start": "./.scripts/deploy-all-services.sh",
"reset": "dfx stop && rm -rf .dfx && yarn cap:reset && yarn crowns:reset && yarn wicp:reset",
"mock:generate-tokens": "./.scripts/mocks/generate-mocks.sh",
"dev": "watch ./.scripts/dev.sh marketplace/src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Psychedelic/nft-marketplace.git"
},
"author": {
"name": "Helder Oliveira",
"email": "helder@fleek.co"
},
"contributors": [
"Ossian Mapes <oz@fleek.co>",
"Daniel Graczer <daniel@fleek.co>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/Psychedelic/nft-marketplace/issues"
},
"homepage": "https://github.com/Psychedelic/nft-marketplace#readme"
}