-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
70 lines (70 loc) · 2.1 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
{
"name": "root",
"private": true,
"version": "1.5.27",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"clean": "rm -rf ./packages/*/lib ./packages/*/*.tsbuildinfo",
"bootstrap": "yarn install",
"prebuild": "yarn workspace @skandha/types run build",
"build-db": "yarn workspace @skandha/db run build",
"build": "yarn prebuild && yarn build-db & lerna run build",
"lint": "eslint --color --ext .ts packages/*/src/",
"fix-lint": "eslint --ext .ts --fix packages/*/src/",
"test": "lerna run test --concurrency 1",
"test:unit": "lerna run test:unit --no-bail --concurrency 1",
"coverage": "vitest run --coverage",
"check-build": "lerna run check-build",
"check-readme": "lerna run check-readme",
"release:publish": "lerna publish from-package --yes --no-verify-access",
"release:docker": "exit 0",
"act": "act -W .github/workflows/release.yml -e event.json -b"
},
"dependencies": {
"abstract-leveldown": "7.2.0",
"lru-cache": "^6.0.0"
},
"devDependencies": {
"@types/chai": "4.3.6",
"@types/chai-as-promised": "7.1.6",
"@types/mocha": "10.0.1",
"@types/sinon": "10.0.16",
"@types/sinon-chai": "3.2.9",
"@types/abstract-leveldown": "7.2.1",
"@types/compression": "1.7.2",
"@types/node": "18.11.9",
"@typescript-eslint/parser": "6.21.0",
"@typescript-eslint/eslint-plugin": "6.21.0",
"eslint": "8.27.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-mocha": "10.2.0",
"lerna": "7.3.0",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.2",
"typescript": "5.4.5",
"chai": "4.3.8",
"chai-as-promised": "7.1.1",
"sinon": "16.0.0",
"sinon-chai": "3.7.0",
"mocha": "10.2.0",
"vitest": "0.34.6",
"vitest-when": "0.2.0",
"@vitest/coverage-v8": "0.34.6"
},
"license": "MIT",
"workspaces": [
"packages/*"
],
"resolutions": {
"@libp2p/interface-connection-manager": "1.3.8"
},
"overrides": {
"libp2p": {
"@libp2p/interface-connection-manager": "1.3.8"
}
}
}