-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.75 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@project/monorepo",
"version": "1.0.0",
"keywords": [
"ethereum",
"react",
"workspaces",
"yarn"
],
"engines": {
"node": ">=12.10.0",
"yarn": ">=1.13.0 <=1.18.0"
},
"private": true,
"scripts": {
"lint": "tsc -b && yarn prettier:all --check && yarn eslint .",
"lint:fix": "yarn eslint --fix . && yarn prettier:all --write",
"eslint": "eslint --ext .js,.jsx,.ts,.tsx,.graphql",
"prettier:all": "prettier --ignore-path .eslintignore \"**/*.{js,jsx,ts,tsx,graphql,md}\"",
"--shortcuts to run commands in workspaces--": "",
"solidity": "yarn workspace @project/solidity",
"contracts": "yarn workspace @project/contracts",
"contracts:build": "yarn workspace @project/contracts build",
"react-app": "yarn workspace @project/react-app",
"react-app:build": "yarn workspace @project/react-app build",
"react-app:eject": "yarn workspace @project/react-app eject",
"react-app:ipfs": "yarn workspace @project/react-app ipfs",
"react-app:start": "yarn workspace @project/react-app start",
"react-app:test": "yarn workspace @project/react-app test"
},
"workspaces": {
"nohoist": [
"**/@graphprotocol/graph-ts",
"**/@graphprotocol/graph-ts/**",
"**/@openzeppelin/contracts",
"**/@openzeppelin/contracts/**",
"**/erc-payable-token",
"**/erc-payable-token/**"
],
"packages": [
"packages/*"
]
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"overrides": [
{
"files": [
"*.yml",
"*.yaml"
],
"options": {
"printWidth": 120
}
},
{
"files": [
"*.sol"
],
"options": {
"singleQuote": false
}
}
]
},
"resolutions": {
"ethers": "5.4.1",
"babel-loader": "8.1.0",
"webpack": "4.42.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint-plugin-react-hooks": "^4.1.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.1.1",
"eslint-plugin-simple-import-sort": "^6.0.1",
"eslint-plugin-workspaces": "^0.6.2",
"eslint_d": "^9.1.2",
"prettier": "^2.0.5",
"solhint": "^3.3.6"
}
}