-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.25 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.25 KB
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
{
"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 && ./show-versions.mjs",
"fix-package-jsons": "manypkg fix"
},
"workspaces": [
"packages/browser-test-runner",
"packages/utils",
"packages/test-utils",
"packages/cdn-location",
"packages/geoip-location",
"packages/proto-rpc",
"packages/autocertifier-client",
"packages/dht",
"packages/autocertifier-server",
"packages/trackerless-network",
"packages/sdk",
"packages/node",
"packages/cli-tools"
],
"devDependencies": {
"@eslint/js": "^9.39.1",
"@manypkg/cli": "^0.25.1",
"@protobuf-ts/plugin": "^2.11.1",
"@stylistic/eslint-plugin": "^5.6.1",
"@tsconfig/node20": "^20.1.8",
"@types/eslint__js": "^9.14.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"cli-table": "^0.3.6",
"eslint": "^9.14.0",
"eslint-config-streamr-ts": "^7.0.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.2.1",
"eslint-plugin-promise": "^7.2.1",
"globals": "^16.5.0",
"jest": "^30.2.0",
"jest-extended": "^7.0.0",
"jest-mock-extended": "^4.0.0",
"lerna": "^9.0.1",
"semver": "^7.7.3",
"ts-jest": "^29.4.5",
"typescript": "^5.8.2",
"typescript-eslint": "^8.47.0",
"yarn": "^1.22.22",
"zx": "^8.8.5"
}
}