-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.27 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
{
"version": "0.1.0",
"private": true,
"engines": {
"yarn": "^1.10.1"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"@polkadot/api": "^4.5.1",
"@open-web3/api-mobx": "^0.9.4-3",
"@open-web3/orml-api-derive": "^0.9.4-3",
"@open-web3/orml-type-definitions": "^0.9.4-3",
"@open-web3/orml-types": "^0.9.4-3",
"@polkadot/typegen": "^4.5.1",
"**/@typescript-eslint/eslint-plugin": "^4.1.1",
"**/@typescript-eslint/parser": "^4.1.1"
},
"scripts": {
"lint": "eslint --ext .js,.jsx,.ts,.tsx . && tsc --noEmit --pretty",
"clean": "polkadot-dev-clean-build",
"postinstall": "polkadot-dev-yarn-only",
"test": "jest --testPathIgnorePatterns e2e --passWithNoTests",
"check-deps": "./node_modules/@open-web3/util/scripts/check-deps.js yarn.lock @polkadot/ @open-web3/"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/register": "^7.8.3",
"@babel/runtime": "^7.8.4",
"@open-web3/util": "^0.9.4-3",
"@polkadot/dev": "^0.32.17",
"@polkadot/ts": "^0.2.1",
"husky": "^4.2.3",
"jest": "^25.1.0",
"prettier": "^2.0.1",
"pretty-quick": "^2.0.1",
"ts-node": "^9.0.0",
"typescript": "^4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}