forked from ethereumjs/ethereumjs-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.84 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",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"checkNpmVersion": "./scripts/check-npm-version.sh",
"clean": "./config/cli/clean-root.sh",
"e2e:inject": "node ./scripts/e2e-inject-resolutions.js",
"e2e:publish": "./scripts/e2e-publish.sh",
"e2e:resolutions": "node ./scripts/e2e-resolutions.js",
"examples": "npm run examples --workspaces --if-present",
"preinstall": "npm run checkNpmVersion",
"postinstall": "npm run build --workspaces",
"prepare": "git config --local core.hooksPath .githooks",
"prettier": "prettier --write \"./**/*.{js,json,md,ts,yml}\"",
"sort-package-json": "sort-package-json \"package.json\" \"packages/*/package.json\""
},
"devDependencies": {
"@types/node": "16.11.49",
"@types/tape": "4.13.2",
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"c8": "7.12.0",
"eslint": "8.22.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-typestrict": "1.0.5",
"eslint-formatter-codeframe": "7.32.1",
"eslint-plugin-github": "4.3.7",
"eslint-plugin-implicit-dependencies": "1.1.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-sonarjs": "0.14.0",
"karma": "6.4.0",
"karma-chrome-launcher": "3.1.1",
"karma-firefox-launcher": "2.1.2",
"karma-tap": "4.2.0",
"karma-typescript": "5.5.3",
"karma-typescript-es6-transform": "5.5.3",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"sort-package-json": "1.57.0",
"tape": "5.6.0",
"ts-node": "10.9.1",
"typedoc": "0.23.10",
"typedoc-plugin-markdown": "3.13.4",
"typescript": "4.7.4",
"eslint-plugin-ethereumjs": "file:./eslint"
},
"engines": {
"node": ">=14",
"npm": ">=7"
}
}