-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
56 lines (56 loc) · 2.02 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": "root",
"author": "Nomic Foundation",
"license": "SEE LICENSE IN EACH PACKAGE'S LICENSE FILE",
"private": true,
"scripts": {
"build": "pnpm --recursive build",
"lint": "pnpm --recursive lint",
"postlint": "prettier --check *.{md,json} ./config/**/*.{js,json}",
"lint:fix": "pnpm --recursive lint:fix",
"postlint:fix": "prettier --write *.{md,json} ./config/**/*.{js,json}",
"test": "pnpm --filter \"./packages/*\" test && pnpm --filter \"./packages/core\" test:integrations",
"test:coverage": "pnpm --recursive test:coverage",
"test:examples": "pnpm --filter \"./examples/*\" test",
"watch": "tsc --build --watch packages/core packages/hardhat-plugin",
"fullcheck": "pnpm build && pnpm lint && pnpm test && pnpm test:examples",
"clean": "pnpm --recursive clean"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@nomiclabs/eslint-plugin-hardhat-internal-rules": "^1.0.2",
"@microsoft/api-extractor": "7.40.1",
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.5",
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "4.14.189",
"@types/lodash.flattendeep": "^4.4.7",
"@types/mocha": "9.1.1",
"@types/ndjson": "2.0.1",
"@types/node": "^18.0.0",
"@types/prompts": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/experimental-utils": "^5.62.0",
"@typescript-eslint/parser": "^5.57.1",
"chai": "^4.3.4",
"chai-as-promised": "7.1.1",
"esbuild": "^0.15.9",
"eslint": "^8.38.0",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-no-only-tests": "3.1.0",
"eslint-plugin-prettier": "4.0.0",
"hardhat": "^2.18.0",
"mocha": "^9.1.3",
"nyc": "15.1.0",
"open-cli": "7.2.0",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"sinon": "^14.0.0",
"ts-node": "10.9.1",
"typescript": "^5.0.2"
}
}