-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
46 lines (45 loc) · 1.59 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
{
"name": "@bounty-board/monorepo",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "yarn workspace @bounty-board/react-app start",
"dev": "yarn workspace @bounty-board/react-app dev",
"build": "yarn workspace @bounty-board/react-app build",
"build:qa": "yarn workspace @bounty-board/react-app build:qa",
"build:prod": "yarn workspace @bounty-board/react-app build:prod",
"lint": "yarn workspace @bounty-board/react-app lint",
"test": "yarn workspace @bounty-board/react-app test",
"test:unit": "yarn workspace @bounty-board/react-app test:unit",
"test:cov": "yarn workspace @bounty-board/react-app test:cov",
"test:integration": "yarn workspace @bounty-board/react-app test:integration",
"react-app:lint-staged": "yarn workspace @bounty-board/react-app lint-staged",
"react-app:type-check": "yarn workspace @bounty-board/react-app type-check",
"react-app:format": "yarn workspace @bounty-board/react-app format",
"react-app:test-all": "yarn workspace @bounty-board/react-app test-all",
"truffle:test": "yarn workspace @bounty-board/escrow test",
"truffle:start": "yarn workspace @bounty-board/escrow start",
"truffle:coverage": "yarn workspace @bounty-board/escrow coverage",
"postinstall": "npx husky install"
},
"husky": {
"hooks": {
"pre-commit": "react-app:lint-staged"
}
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/truffle",
"**/truffle/**"
]
},
"devDependencies": {
"husky": "^7.0.1"
},
"resolutions": {
"**/@types/react": "^17.0.38"
}
}