-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.45 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 2.45 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@padlock-app/monorepo",
"version": "1.0.0",
"keywords": [
"ethereum",
"react",
"uniswap",
"workspaces",
"yarn"
],
"private": true,
"scripts": {
"react-app:build": "yarn workspace @padlock-app/react-app build --max-old-space-size=12288",
"react-app:eject": "yarn workspace @padlock-app/react-app eject",
"react-app:start": "yarn workspace @padlock-app/react-app start",
"react-app:test": "yarn workspace @padlock-app/react-app test",
"ship": "echo 'Sorry, this does not work yet'",
"build": "yarn workspace @padlock-app/react-app build --max-old-space-size=12288",
"chain": "cd packages/buidler && npx buidler node",
"node": "cd packages/buidler && npx buidler node",
"test": "cd packages/buidler && npx buidler test",
"start": "yarn workspace @padlock-app/react-app start",
"compile": "cd packages/buidler && npx buidler compile",
"deploy": "cd packages/buidler && npx buidler run scripts/deploy.js && npx buidler run scripts/publish.js",
"deploy:ropsten": "cd packages/buidler && npx buidler run scripts/deploy.js --network ropsten && npx buidler run scripts/publish.js",
"verify:ropsten-padlock": "cd packages/buidler && npx buidler verify-contract --contract-name Padlock --address 0x8D1eD3DaB2dE4622b7eD38baB4A9918256CF7B30 \"0x3C94E8C155C83943391B0C79D1e43c5Bd4DC63BE\"",
"verify:ropsten-payment": "cd packages/buidler && npx buidler verify-contract --contract-name PaymentToken --address 0x3C94E8C155C83943391B0C79D1e43c5Bd4DC63BE \"PadlockPayment\" \"TEST\"",
"verify:ropsten-nft": "cd packages/buidler && npx buidler verify-contract --contract-name PadlockNFT --address 0x1F9Fce5597e792e41A9bf0aC12460e9167E83F9d \"PadlockNFT\" \"PAD\" \"0x1112917eA50CF050503c9E0564eFe9f26b8499a4\"",
"watch": "cd packages/buidler && node scripts/watch.js",
"accounts": "cd packages/buidler && npx buidler accounts",
"balance": "cd packages/buidler && npx buidler balance",
"send": "cd packages/buidler && npx buidler send",
"ipfs": "cd packages/react-app && node ipfs",
"surge": "surge packages/react-app/build",
"s3": "cd packages/react-app && node s3"
},
"devDependencies": {
"@nomiclabs/buidler": "^1.3.3",
"@nomiclabs/buidler-etherscan": "^1.3.3",
"@nomiclabs/buidler-truffle5": "1.3.3-rc.0",
"@nomiclabs/buidler-web3": "1.3.3-rc.0"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"dependencies": {
"node-fetch": "^2.6.0"
}
}