forked from streamr-dev/network
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2.02 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
{
"name": "streamr-monorepo",
"private": true,
"scripts": {
"build": "npm run --workspaces --if-present build",
"eslint": "npm run eslint --workspaces --if-present",
"check": "npm run --workspaces --if-present check",
"clean-dist": "npx --workspaces -c 'npm run --if-present clean || rm -rf dist *.tsbuildinfo || true'",
"clean": "npm run clean-dist && npx --workspaces --include-workspace-root -c 'rm -rf node_modules || true'",
"bootstrap": "npm ci --no-audit && npm run build",
"bootstrap-pkg": "npm ci --no-audit --include-workspace-root --workspace=$npm_config_package && npm run build --workspace=$npm_config_package",
"prune-pkg": "npm prune --no-audit --include-workspace-root --production --workspace",
"versions": "manypkg check && zx ./show-versions.mjs",
"fix-package-jsons": "manypkg fix",
"install-git-hooks": "husky install"
},
"workspaces": [
"packages/utils",
"packages/test-utils",
"packages/protocol",
"packages/proto-rpc",
"packages/dht",
"packages/network",
"packages/network-tracker",
"packages/client",
"packages/broker",
"packages/cli-tools"
],
"dependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@manypkg/cli": "^0.19.1",
"@tsconfig/node16": "^1.0.2",
"@types/jest": "^28.1.2",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"cli-table": "^0.3.6",
"eslint": "^8.19.0",
"eslint-config-streamr-ts": "^4.1.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^6.0.0",
"jest": "^28.1.2",
"jest-extended": "^3.1.0",
"lerna": "^4.0.0",
"node-gyp-build": "^4.3.0",
"semver": "^7.3.5",
"ts-jest": "^28.0.5",
"typescript": "^4.9.3",
"yarn": "^1.22.17",
"zx": "^1.14.1"
}
}