forked from ethereumjs/ethereumjs-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.41 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"checkNpmVersion": "./scripts/check-npm-version.sh",
"clean": "./config/cli/clean-root.sh",
"docs:build": "npm run docs:build --workspaces --if-present",
"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\"",
"install-browser-deps": "npm install webdriverio @vitest/browser web-streams-polyfill"
},
"devDependencies": {
"@types/estree": "^1.0.1",
"@types/node": "18.11.9",
"@types/tape": "4.13.2",
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"@vitest/coverage-v8": "^1.2.2",
"@vitest/ui": "^1.2.2",
"c8": "7.12.0",
"embedme": "1.22.1",
"eslint": "8.45.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-typestrict": "1.0.5",
"eslint-formatter-codeframe": "7.32.1",
"eslint-plugin-ethereumjs": "file:./eslint",
"eslint-plugin-github": "4.9.2",
"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.19.0",
"lint-staged": "13.0.3",
"lockfile-lint-api": "^5.5.1",
"prettier": "2.7.1",
"sort-package-json": "1.57.0",
"tape": "5.6.0",
"tsx": "^4.6.2",
"typedoc": "0.23.10",
"typedoc-plugin-markdown": "3.13.4",
"typescript": "4.7.4",
"vite-plugin-node-polyfills": "^0.21.0",
"vite-plugin-top-level-await": "^1.4.1",
"vite-plugin-wasm": "^3.3.0",
"vitest": "^1.2.2"
},
"peerDependencies": {
"@vitest/browser": "^1.5.0",
"webdriverio": "^8.36.0"
},
"peerDependenciesMeta": {
"playwright": {
"optional": true
},
"webdriverio": {
"optional": true
},
"@vitest/browser": {
"optional": true
},
"kzg-wasm": {
"optional": true
}
},
"engines": {
"node": ">=18",
"npm": ">=7"
}
}