This repository has been archived by the owner on Jun 24, 2021. It is now read-only.
forked from dethcrypto/TypeChain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.55 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
{
"name": "monorepo-base",
"private": true,
"license": "MIT",
"engines": {
"yarn": ">=1.15.2"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"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 ./tsconfig.prod.json && wsrun -m -c post-build",
"watch": "tsc --build --verbose --watch ./tsconfig.prod.json",
"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",
"no-git-changes": "./scripts/no-git-changes.sh",
"check-examples": "./scripts/check-examples.sh",
"prerelease": "yarn lint && yarn format && yarn test && yarn typecheck",
"release": "yarn build && yarn changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.11.2",
"@types/mocha": "^8.2.1",
"@typescript-eslint/eslint-plugin": "4.15.1",
"@typescript-eslint/parser": "4.15.1",
"earljs": "^0.1.10",
"eslint": "^6.8.0",
"eslint-config-typestrict": "^1.0.0",
"eslint-plugin-no-only-tests": "^2.4.0",
"eslint-plugin-sonarjs": "^0.5.0",
"mocha": "^8.2.0",
"prettier": "^2.1.2",
"solc": "^0.6.4",
"ts-node": "^8.5.4",
"typescript": "4.1.5",
"wsrun": "^5.2.4"
}
}