-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
36 lines (36 loc) · 919 Bytes
/
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
{
"private": true,
"author": "Terraform Labs PTE.LTD",
"license": "Apache-2.0",
"repository": "https://github.com/terra-money/wallet-provider",
"workspaces": [
"packages",
"templates/*"
],
"scripts": {
"format": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky install"
},
"lint-staged": {
"**/src/{**/*,*}.{ts,tsx}": [
"prettier --write",
"eslint --max-warnings 0 --no-ignore"
]
},
"devDependencies": {
"@handbook/markdown-source-import": "^1.1.0",
"@ssen/prettier-config": "^2.0.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.1.5",
"prettier": "^2.5.1"
},
"resolutions": {
"@terra-money/terra.js": "3.1.6"
},
"packageManager": "[email protected]"
}