-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.19 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
{
"name": "gooddollar",
"workspaces": {
"packages": [
"packages/*"
]
},
"private": true,
"version": "0.0.1",
"description": "GoodDollar Library",
"author": "LewisB <lewis@gooddollar.org> ",
"license": "GPL-3.0",
"homepage": "",
"scripts": {
"build": "yarn workspaces foreach --topological-dev -v run build",
"release:beta": "node dev-release",
"compile": "tsc -p tsconfig.build.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"packageManager": "yarn@3.2.1",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-hooks-addons": "^0.3.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"pinst": "^3.0.0",
"prettier": "2.8.8",
"typescript": "^4.9.3"
},
"resolutions": {
"ethers": "5.7.2"
},
"dependencies": {
"vercel": "^35.0.2"
}
}