forked from Synthetixio/js-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.78 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "root",
"version": "2.74.1",
"workspaces": [
"contracts",
"packages/contracts-interface",
"packages/optimism-networks",
"packages/transaction-notifier",
"packages/wei",
"packages/providers",
"packages/queries",
"**/*"
],
"private": true,
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pretty": "prettier . --check",
"pretty:fix": "prettier . --write",
"clean": "yarn workspaces foreach exec rm -rf coverage build generated",
"test": "yarn workspaces foreach --topological-dev --verbose run test",
"build": "yarn workspaces foreach --topological-dev --verbose run build",
"publish": "yarn workspaces foreach --topological-dev --verbose publish",
"deps": "deps",
"deps:fix": "deps --fix",
"deps:mismatched": "deps-mismatched",
"deps:circular": "deps-circular",
"deps:version": "deps-version",
"upgrade-browsers": "yarn up browserslist caniuse-lite --recursive"
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/preset-env": "^7.13.10",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^28.1.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"deps": "workspace:*",
"eslint": "^7.26.0",
"eslint-plugin-import": "^2.23.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.3.0",
"typescript": "^4.4.2"
},
"browserslist": [
"last 1 Chrome version",
"last 1 Firefox version",
"last 1 Edge version",
"last 1 Opera version"
],
"resolutions": {
"@ethersproject/abi": "^5.6.4",
"ethers": "^5.5.3",
"browserslist": "^4.20.4",
"caniuse-lite": "^1.0.30001355"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"prettier --check",
"eslint"
]
},
"packageManager": "[email protected]"
}