-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.07 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
{
"name": "chessmatic",
"version": "1.0.0",
"description": "a chess game",
"private": true,
"scripts": {
"dev": "yarn workspace @chessmatic/react-app dev",
"build": "yarn workspace @chessmatic/react-app build",
"serve": "yarn workspace @chessmatic/react-app serve",
"chain": "yarn workspace @chessmatic/hardhat chain",
"compile": "yarn workspace @chessmatic/hardhat compile",
"clean": "yarn workspace @chessmatic/hardhat clean",
"deploy": "yarn workspace @chessmatic/hardhat deploy",
"deploy:mumbai": "yarn workspace @chessmatic/hardhat deploy:mumbai",
"deploy:rinkeby": "yarn workspace @chessmatic/hardhat deploy:rinkeby",
"deploy:mainnet": "yarn workspace @chessmatic/hardhat deploy:mainnet"
},
"author": "Eric Roupe",
"license": "MIT",
"devDependencies": {},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@graphprotocol/graph-ts",
"**/@graphprotocol/graph-ts/**",
"**/hardhat",
"**/hardhat/**",
"**/hardhat-ts",
"**/hardhat-ts/**"
]
},
"dependencies": {}
}