-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
73 lines (73 loc) · 2.58 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
{
"private": true,
"workspaces": {
"packages": [
"packages/*",
"packages/sample/generated/*",
"packages/sample/mappings"
],
"nohoist": [
"**/hydra-typegen",
"**/sample/generated/graphql-server",
"**/sample/generated/graphql-server/**",
"**/hydra-typegen/**"
]
},
"scripts": {
"build": "yarn build:common && yarn build:utils && yarn build:bn-typeorm && yarn build:typegen && yarn build:processor && yarn build:indexer && yarn build:indexer-gateway && yarn build:cli && yarn build:e2e-test",
"build:common": "yarn workspace @joystream/hydra-common build",
"build:utils": "yarn workspace @joystream/hydra-db-utils build",
"build:bn-typeorm": "yarn workspace @joystream/bn-typeorm build",
"build:typegen": "yarn workspace @joystream/hydra-typegen build",
"build:processor": "yarn workspace @joystream/hydra-processor build",
"build:indexer": "yarn workspace @joystream/hydra-indexer build",
"build:indexer-gateway": "yarn workspace @joystream/hydra-indexer-gateway build",
"build:cli": "yarn workspace @joystream/hydra-cli build",
"build:e2e-test": "yarn workspace @joystream/hydra-e2e-tests build",
"e2e-test": "yarn workspace @joystream/hydra-e2e-tests run e2e-test",
"lint": "yarn workspaces run lint",
"postinstall": "is-ci || husky install",
"build:docker": "docker build . -t hydra-builder:latest && yarn workspace @joystream/hydra-indexer docker:build && yarn workspace @joystream/hydra-indexer-gateway docker:build"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@joystream/eslint-config": "^1.0.0",
"@joystream/prettier-config": "^1.0.0",
"commitizen": "^4.2.3",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"cz-lerna-changelog": "^2.0.3",
"eslint": "^7.6.0",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-tsdoc": "^0.2.14",
"husky": "^5.1.1",
"is-ci": "^3.0.0",
"lerna": "^3.22.1",
"lint-staged": "^10.5.1",
"prettier": "^2.7.1"
},
"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",
"@types/bn.js": "^5.1.0",
"bn.js": "^5.2.1",
"mocha": "^10",
"chai": "^4",
"node-fetch": "^2",
"ts-node": "^10"
},
"lint-staged": {
"*.ts": "yarn lint --fix"
},
"name": "hydra",
"config": {
"commitizen": {
"path": "cz-lerna-changelog"
}
}
}