-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.67 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": "@scaffold-eth/monorepo",
"version": "1.0.0",
"keywords": [
"ethereum",
"react",
"uniswap",
"workspaces",
"yarn"
],
"private": true,
"scripts": {
"ceramic": "ceramic daemon",
"react-app:build": "yarn workspace @scaffold-eth/react-app build --max-old-space-size=12288",
"react-app:eject": "yarn workspace @scaffold-eth/react-app eject",
"react-app:start": "yarn workspace @scaffold-eth/react-app start",
"react-app:test": "yarn workspace @scaffold-eth/react-app test",
"build": "yarn workspace @scaffold-eth/react-app build --max-old-space-size=12288",
"chain": "yarn workspace @scaffold-eth/buidler chain",
"node": "yarn workspace @scaffold-eth/buidler chain",
"test": "yarn workspace @scaffold-eth/buidler test",
"start": "yarn workspace @scaffold-eth/react-app start",
"compile": "yarn workspace @scaffold-eth/buidler compile",
"deploy": "yarn workspace @scaffold-eth/buidler deploy",
"watch": "yarn workspace @scaffold-eth/buidler watch",
"accounts": "yarn workspace @scaffold-eth/buidler accounts",
"balance": "yarn workspace @scaffold-eth/buidler balance",
"send": "yarn workspace @scaffold-eth/buidler send",
"ipfs": "yarn workspace @scaffold-eth/react-app ipfs",
"surge": "yarn workspace @scaffold-eth/react-app surge",
"s3": "yarn workspace @scaffold-eth/react-app s3",
"ship": "yarn workspace @scaffold-eth/react-app ship",
"generate": "cd packages/buidler && npx buidler generate",
"account": "cd packages/buidler && npx buidler account",
"flatten": "cd packages/buidler && npx buidler flatten"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}