forked from Joystream/joystream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.31 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
{
"private": true,
"name": "joystream",
"version": "1.0.0",
"license": "GPL-3.0-only",
"scripts": {
"test": "yarn && yarn workspaces run test",
"test-migration": "yarn && yarn workspaces run test-migration",
"postinstall": "yarn workspace @joystream/types build && yarn workspace storage-node run build",
"cargo-checks": "devops/git-hooks/pre-commit && devops/git-hooks/pre-push",
"cargo-build": "scripts/cargo-build.sh",
"lint": "yarn workspaces run lint"
},
"workspaces": [
"tests/network-tests",
"cli",
"types",
"pioneer",
"pioneer/packages/*",
"storage-node",
"storage-node/packages/*",
"devops/eslint-config",
"devops/prettier-config"
],
"resolutions": {
"@polkadot/api": "^0.96.1",
"@polkadot/api-contract": "^0.96.1",
"@polkadot/keyring": "^1.7.0-beta.5",
"@polkadot/types": "^0.96.1",
"@polkadot/util": "^1.7.0-beta.5",
"@polkadot/util-crypto": "^1.7.0-beta.5",
"babel-core": "^7.0.0-bridge.0",
"typescript": "^3.7.2"
},
"devDependencies": {
"husky": "^4.2.5",
"prettier": "2.0.2",
"eslint": "^5.16.0"
},
"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"
}
}