forked from smartcontractkit/chainlink-fullstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.13 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
{
"name": "chainlink-fullstack",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "yarn workspace chainlink-fullstack-frontend dev",
"build": "yarn workspace chainlink-fullstack-frontend build",
"export": "yarn workspace chainlink-fullstack-frontend export",
"start": "yarn workspace chainlink-fullstack-frontend start",
"chain": "yarn workspace chainlink-fullstack-hardhat chain",
"deploy": "yarn workspace chainlink-fullstack-hardhat deploy",
"compile": "yarn workspace chainlink-fullstack-hardhat compile",
"test:contracts": "yarn workspace chainlink-fullstack-hardhat test",
"test:frontend": "yarn workspace chainlink-fullstack-frontend test",
"coverage:contracts": "yarn workspace chainlink-fullstack-hardhat coverage",
"lint:frontend": "yarn workspace chainlink-fullstack-frontend lint",
"format:frontend": "yarn workspace chainlink-fullstack-frontend format",
"format:hardhat": "yarn workspace chainlink-fullstack-hardhat format"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/hardhat",
"**/hardhat/**",
"**"
]
}
}