-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
50 lines (50 loc) · 1.5 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
{
"name": "workspace",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build": "yarn foreach run build",
"foreach": "yarn workspaces foreach --verbose --no-private --topological-dev",
"format": "prettier -w .",
"husky": "[ -z \"${CI:-}\" ] && husky install",
"lint": "yarn foreach run export-version; eslint --fix .",
"precommit": "lint-staged",
"prepush": "exit",
"test": "yarn foreach run export-version; jest",
"typecheck": "yarn foreach run typecheck"
},
"devDependencies": {
"@coinbase/wallet-sdk": "^3.3.0",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.17",
"@types/react": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"@walletconnect/ethereum-provider": "^1.7.5",
"depcheck": "^1.4.3",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "26.1.5",
"eslint-plugin-prettier": "4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.3",
"microbundle": "^0.15.1",
"prettier": "2.6.2",
"prettier-plugin-packagejson": "2.2.18",
"prettier-plugin-sh": "0.11.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typescript": "^5.0.4"
},
"packageManager": "[email protected]",
"resolutions": {
"ethereumjs-abi": "https://registry.npmjs.org/ethereumjs-abi/-/ethereumjs-abi-0.6.8.tgz"
}
}