-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
45 lines (45 loc) · 1.24 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
{
"name": "discv5-monorepo",
"private": true,
"version": "0.0.0",
"description": "Discovery V5 monorepo",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"check-types": "lerna run check-types",
"build": "lerna run build",
"lint": "lerna run lint",
"prepublishOnly": "yarn build",
"publish": "lerna publish from-package --yes --no-verify-access",
"test": "lerna run test",
"test:unit": "lerna run test:unit",
"test:e2e": "lerna run test:e2e"
},
"pre-push": [
"lint"
],
"devDependencies": {
"@chainsafe/eslint-plugin-node": "^11.2.3",
"@dapplion/benchmark": "^0.2.4",
"@types/chai": "^4.2.0",
"@types/debug": "^4.1.5",
"@types/eslint": "^6.1.3",
"@types/mocha": "^8.0.3",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"chai": "^4.3.6",
"eslint": "^8.17.0",
"eslint-plugin-prettier": "^4.0.0",
"karma": "^4.3.0",
"lerna": "^7.4.2",
"mocha": "^10.0.0",
"nyc": "^14.1.1",
"prettier": "^2.6.2",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"packageManager": "[email protected]+sha256.c17d3797fb9a9115bf375e31bfd30058cac6bc9c3b8807a3d8cb2094794b51ca"
}