-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.27 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
{
"name": "chainlink-fullstack",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "yarn workspace chainlink-fullstack-frontend dev",
"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",
"build": "(yarn run 'compile' &) && yarn build:dapp && yarn build:api",
"build:dapp": "yarn workspace chainlink-fullstack-frontend build",
"build:api": "yarn workspace chainlink-fullstack-api build"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/hardhat",
"**/hardhat/**",
"**"
]
}
}