forked from Joystream/joystream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.25 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
{
"private": true,
"name": "joystream",
"version": "1.0.0",
"license": "GPL-3.0-only",
"scripts": {
"build:node:docker": "./build-node-docker.sh",
"build:packages": "./build-packages.sh",
"build": "./build-packages.sh",
"setup": "./setup.sh",
"start": "./start.sh",
"test": "./tests/network-tests/run-tests.sh",
"cargo-checks": "./scripts/cargo-checks.sh",
"cargo-checks-with-benchmarking": "./scripts/cargo-checks-with-benchmarking.sh",
"cargo-build": "./scripts/cargo-build.sh",
"lint": "./scripts/lint-typescript.sh",
"update-chain-metadata": "./scripts/fetch-chain-metadata.sh | tee chain-metadata.json query-node/chain-metadata/$(./scripts/fetch-chain-spec-version.sh).json >/dev/null",
"verify-chain-metadata": "./scripts/verify-chain-metadata.sh"
},
"workspaces": [
"tests/network-tests",
"cli",
"types",
"storage-node",
"storage-node/client",
"distributor-node",
"distributor-node/client",
"devops/eslint-config",
"devops/prettier-config",
"utils/api-scripts",
"query-node",
"query-node/mappings",
"query-node/generated/graphql-server",
"metadata-protobuf",
"joystreamjs",
"opentelemetry"
],
"resolutions": {
"@polkadot/api": "10.7.1",
"@polkadot/typegen": "10.7.1",
"@polkadot/keyring": "12.6.2",
"@polkadot/types": "10.7.1",
"@polkadot/util": "12.6.2",
"@polkadot/util-crypto": "12.6.2",
"@polkadot/networks": "12.6.2",
"@polkadot/x-fetch": "12.6.2",
"@polkadot/x-global": "12.6.2",
"@polkadot/x-ws": "12.6.2",
"bn.js": "^5.2.1",
"rxjs": "^7.4.0",
"typeorm": "https://github.com/Joystream/typeorm/releases/download/0.3.5/typeorm-v0.3.5.tgz",
"**/graphql-binding/graphql": "^15.3.0",
"graphql-tools": "^4.0.8",
"pg": "^8.4.0",
"@types/bn.js": "^5.1.0",
"typescript": "5.0.2",
"@substrate/txwrapper-core": "6.0.1"
},
"devDependencies": {
"eslint": "^7.25.0",
"husky": "^4.2.5",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "devops/git-hooks/pre-commit",
"pre-push": "devops/git-hooks/pre-push"
}
},
"engines": {
"node": ">=14.18.0",
"yarn": "^1.22.15"
},
"volta": {
"node": "18.6.0",
"yarn": "1.22.19"
}
}