forked from dethcrypto/TypeChain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 902 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 902 Bytes
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": "monorepo-base",
"private": true,
"license": "MIT",
"engines": {
"yarn": ">=1.15.2"
},
"scripts": {
"postinstall": "yarn build",
"format": "wsrun -c format",
"format:fix": "wsrun -c format:fix",
"lint": "wsrun -c lint",
"lint:fix": "wsrun -c lint:fix",
"typecheck": "wsrun -c typecheck",
"build": "tsc --build --verbose && wsrun -m -c post-build",
"watch": "tsc --build --verbose --watch",
"clean": "wsrun -c clean",
"compile-contracts": "./scripts/compile-contracts/compile-contracts.sh && wsrun -m -c compile-contracts",
"test": "yarn compile-contracts && wsrun -mse -c test",
"test:fix": "yarn lint:fix && yarn test && yarn format:fix && yarn typecheck",
"check-examples": "./scripts/check-examples.sh"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"solc": "^0.6.4",
"wsrun": "^5.2.0"
}
}