forked from ethereumjs/ethereumjs-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.09 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"npm": ">=7"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-typestrict": "^1.0.0",
"eslint-plugin-implicit-dependencies": "^1.0.4",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-sonarjs": "^0.5.0",
"husky": "^4.2.5",
"nyc-report-lcov-absolute": "^1.0.0",
"typedoc-plugin-markdown": "^3.10.4",
"verdaccio": "^4.12.2"
},
"husky": {
"hooks": {
"pre-push": "npm run lint --workspaces"
}
},
"scripts": {
"preinstall": "npm run checkNpmVersion",
"postinstall": "npm run build --workspaces",
"checkNpmVersion": "./scripts/check-npm-version.sh",
"examples": "npm run examples --workspaces --if-present",
"clean": "./config/cli/clean-root.sh",
"e2e:publish": "./scripts/e2e-publish.sh",
"e2e:resolutions": "node ./scripts/e2e-resolutions.js",
"e2e:inject": "node ./scripts/e2e-inject-resolutions.js"
}
}