-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.37 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
{
"name": "dyor-monorepo",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"packages/*"
]
},
"scripts": {
"build": "turbo run export && turbo run build",
"dev": "turbo run compile && turbo run dev --parallel",
"export": "turbo run export",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install",
"test": "turbo run test"
},
"nohoist": [
"**/typechain",
"**/@typechain/*"
],
"devDependencies": {
"@testing-library/jest-dom": "5.16.2",
"@testing-library/react": "12.1.3",
"@testing-library/react-hooks": "7.0.2",
"@testing-library/user-event": "13.5.0",
"@types/jest": "27.4.1",
"@types/node": "17.0.20",
"esbuild": "0.14.23",
"esbuild-jest": "0.5.0",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.3.4",
"prettier": "2.5.1",
"ts-node": "10.5.0",
"turbo": "1.1.3",
"typescript": "4.5.5"
},
"lint-staged": {
"apps/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"packages/ui/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"*.json": [
"prettier --write"
]
},
"engines": {
"npm": ">=8.0.0",
"node": ">=14.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@typechain/ethers-v5": "7.0.1",
"ethers": "^5.6.5"
}
}