forked from darkforest-eth/darkforest-v0.3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 877 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 877 Bytes
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
{
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"husky": "^4.2.5",
"lint-staged": ">=10",
"prettier": "^2.0.5",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{client,webserver,whitelist,mockchain}/src/**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix --max-warnings 0"
]
},
"dependencies": {
"@openzeppelin/cli": "^2.8.2",
"@openzeppelin/contracts": "^3.1.0",
"@truffle/hdwallet-provider": "^1.0.40",
"dotenv": "^8.2.0",
"global": "^4.4.0",
"oz": "^5.0.3",
"readline-sync": "^1.4.10",
"ts-node": "^8.10.2"
}
}