forked from HayattiQ/NFTBoil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "nftboil",
"private": true,
"version": "1.0.0",
"description": "NFTBoil collection",
"main": "index.js",
"scripts": {
"prepare": "husky install"
},
"workspaces": [
"frontend",
"generate",
"contract"
],
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.23",
"@types/sharp": "^0.30.2",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"chai": "^4.3.6",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.3",
"eslint-plugin-promise": "^6.0.0",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^8.0.0",
"lint-staged": "^13.0.2",
"prettier": "2.7.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HayattiQ/NFTBoil.git"
},
"author": "HayattiQ",
"license": "MIT",
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,ts,tsx,md,json}": "prettier --write"
},
"homepage": "https://github.com/HayattiQ/NFTBoil#readme"
}