-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.06 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.06 KB
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
{
"name": "arbazaar",
"version": "0.0.0",
"author": "Nathan Clark",
"license": "GPL-3.0",
"description": "Arbitrum-native NFT marketplace.",
"private": "true",
"scripts": {
"preinstall": "npx only-allow pnpm",
"protocol:node": "cd protocol && npx hardhat node --network hardhat",
"protocol:build": "cd protocol && npx hardhat compile",
"protocol:dev": "cd protocol && npx hardhat --network localhost deploy --watch",
"protocol:rinkeby": "cd protocol && npx hardhat --network rinkeby deploy",
"protocol:one": "cd protocol && npx hardhat --network mainnet deploy",
"ui:build": "cd ui && pnpm run prepare && npx svelte-kit build",
"ui:dev": "cd ui && npx svelte-kit dev",
"ui:preview": "cd ui && npx svelte-kit preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/natclark/arbazaar.git"
},
"bugs": {
"url": "https://github.com/natclark/arbazaar/issues"
},
"homepage": "https://github.com/natclark/arbazaar#readme"
}