-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
50 lines (50 loc) Β· 1.75 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
{
"name": "@honeylemon/monorepo",
"version": "3.0.0",
"description": "Decentralized Synthetic cloud mining contracts built on Ethereum",
"private": true,
"engines": {
"node": ">=0.10.3 <0.12"
},
"dependencies": {},
"devDependencies": {
"@sentry/cli": "1.55.0",
"chalk": "^2.0.1",
"husky": "^4.2.3",
"prettier": "1.19.1",
"prettier-plugin-solidity": "1.0.0-alpha.49",
"pretty-quick": "^2.0.1",
"typescript": "3.9.5",
"wsrun": "^3.6.5"
},
"scripts": {
"build:contracts": "yarn wsrun -p @honeylemon/contracts -c build",
"build:honeylemonjs": "yarn wsrun -p @honeylemon/honeylemonjs -c build",
"build:subgraph": "yarn wsrun -p @honeylemon/graph -c build",
"build:webapp": "yarn wsrun -p @honeylemon/webapp -c build",
"start:webapp": "yarn wsrun -p @honeylemon/webapp -c start",
"test:contracts": "yarn wsrun -p @honeylemon/contracts -c test",
"test:integration": "make local-reset && yarn wsrun -p @honeylemon/contracts -c integration-proxy-redemption && make local-reset && yarn wsrun -p @honeylemon/contracts -c integration-order-redemption && make local-reset && yarn wsrun -p @honeylemon/contracts -c integration-trade-lifecycle",
"release:webapp": "yarn wsrun -p @honeylemon/webapp -c release",
"clean": "rm -rf ./node_modules && rm -rf ./*/node_modules",
"lint": "npm run prettier -- --write",
"prettier": "prettier './**/*.js' './**/*.sol' './**/*.md'",
"start:tunnel": "./ngrok http https://localhost:3000"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/truffle",
"**/typechain",
"**/openzeppelin-solidity",
"**/typescript"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}