-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.31 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "code-claim-site",
"packageManager": "[email protected]",
"private": true,
"license": "MIT",
"scripts": {
"dev": "yarn workspaces foreach -pi run dev",
"build": "yarn workspaces foreach -t run build",
"lint": "yarn workspaces foreach -pi run lint",
"lint:fix": "yarn workspaces foreach -pi run lint:fix",
"format": "yarn workspaces foreach -pi run format",
"format:fix": "yarn workspaces foreach -pi run format:fix",
"test": "yarn workspaces foreach -pi run test",
"compile": "yarn workspace hardhat run compile",
"hardhat:build": "yarn workspace hardhat run build",
"deploy": "yarn workspace hardhat run deploy",
"void:deploy": "hardhat deploy",
"hardhat:test": "yarn workspace hardhat run test",
"gas": "yarn workspace hardhat run gas",
"hardhat:coverage": "yarn workspace hardhat run coverage",
"dev:zero": "yarn workspace hardhat run dev:zero",
"hardhat:dev": "yarn workspace hardhat run dev",
"local:dev": "yarn workspace hardhat run loacl:dev",
"execute": "yarn workspace hardhat run execute",
"export": "yarn workspace hardhat run export",
"fork:execute": "yarn workspace hardhat run fork:execute",
"fork:deploy": "yarn workspace hardhat run fork:deploy",
"fork:dev": "yarn workspace hardhat run fork:dev",
"fork:node": "yarn workspace hardhat run fork:node",
"fork:test": "yarn workspace hardhat run fork:test",
"start": "yarn workspace next-app run start",
"storybook": "yarn workspace next-app run storybook",
"next:dev": "yarn workspace next-app run dev",
"next:test": "yarn workspace next-app run test",
"next:build": "yarn workspace next-app run build",
"e2e": "yarn workspace next-app run e2e",
"prepare": "husky install && yarn workspace hardhat run prepare"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"eslint": "^8.2.0",
"husky": "^7.0.4",
"prettier": "^2.4.1"
},
"lint-staged": {
"packages/hardhat/**/*.{ts,js,sol}": "yarn workspace hardhat prettier --write",
"packages/hardhat/**/*.{js,ts}": "yarn workspace hardhat eslint --fix",
"packages/hardhat/**/*.sol": "yarn workspace hardhat solhint --fix",
"packages/next-app/**/*.{ts,js,tsx,jsx}": [
"yarn workspace next-app prettier --write",
"yarn workspace next-app eslint --fix"
]
}
}