forked from Joystream/joystream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.56 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
60
{
"private": true,
"name": "joystream",
"version": "1.0.0",
"license": "GPL-3.0-only",
"scripts": {
"postinstall": "yarn workspace @joystream/types build && yarn workspace @joystream/cd-schemas generate:all && yarn workspace @joystream/cd-schemas build && yarn workspace @joystream/cli build",
"build": "./build.sh",
"start": "./start.sh",
"cargo-checks": "devops/git-hooks/pre-commit && devops/git-hooks/pre-push",
"cargo-build": "scripts/cargo-build.sh"
},
"workspaces": [
"tests/network-tests",
"cli",
"types",
"storage-node",
"storage-node/packages/*",
"devops/eslint-config",
"devops/prettier-config",
"pioneer",
"pioneer/packages/*",
"utils/api-scripts",
"content-directory-schemas",
"query-node",
"query-node/generated/*"
],
"resolutions": {
"@polkadot/api": "1.26.1",
"@polkadot/api-contract": "1.26.1",
"@polkadot/keyring": "^3.0.1",
"@polkadot/types": "1.26.1",
"@polkadot/util": "^3.0.1",
"@polkadot/util-crypto": "^3.0.1",
"@polkadot/wasm-crypto": "^1.2.1",
"babel-core": "^7.0.0-bridge.0",
"typescript": "^3.9.7",
"bn.js": "^5.1.2",
"@dzlzv/hydra-indexer-lib": "0.0.22-legacy.1.26.1"
},
"devDependencies": {
"eslint": "^7.6.0",
"husky": "^4.2.5",
"prettier": "2.0.2"
},
"husky": {
"hooks": {
"pre-commit": "devops/git-hooks/pre-commit",
"pre-push": "devops/git-hooks/pre-push"
}
},
"engines": {
"node": ">=12.18.0",
"yarn": "^1.22.0"
},
"volta": {
"node": "12.18.2",
"yarn": "1.22.4"
}
}