forked from scaffold-eth/scaffold-eth
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.64 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
43
{
"name": "@uniswap-v1-app/monorepo",
"version": "1.0.0",
"keywords": [
"ethereum",
"react",
"uniswap",
"workspaces",
"yarn"
],
"private": true,
"scripts": {
"react-app:build": "yarn workspace @uniswap-v1-app/react-app build --max-old-space-size=12288",
"react-app:eject": "yarn workspace @uniswap-v1-app/react-app eject",
"react-app:start": "yarn workspace @uniswap-v1-app/react-app start",
"react-app:test": "yarn workspace @uniswap-v1-app/react-app test",
"ship": "echo 'Sorry, this does not work yet'",
"build": "yarn workspace @uniswap-v1-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 @uniswap-v1-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",
"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",
"gsn-start": "gsn start --workdir packages/react-app/src/build/gsn",
"gsn-run": "npx gsn relayer-run"
},
"devDependencies": {
"@nomiclabs/buidler": "1.3.3-rc.0",
"@nomiclabs/buidler-ganache": "1.3.3-rc.0",
"@nomiclabs/buidler-truffle5": "1.3.3-rc.0",
"@nomiclabs/buidler-web3": "1.3.3-rc.0"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}