forked from Arianee/permit721
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·60 lines (60 loc) · 1.86 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
{
"name": "@arianee/permit721-contracts",
"version": "1.0.0",
"private": true,
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "ts-node scripts/build.ts",
"postbuild": "ts-node scripts/postbuild.ts",
"commit": "cz",
"lint": "eslint .",
"format": "prettier --write .",
"test": "npm run build && hardhat test",
"deploy-mock-erc721": "npm run build && hardhat deploy-mock-erc721",
"deploy-permit721": "npm run build && hardhat deploy-permit721",
"gen:doc": "hardhat dodoc",
"clean:build": "rimraf lib",
"clean:gen": "rimraf contracts/generated && rimraf artifacts/contracts/generated && rimraf typechain-ethers6/contracts/generated"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Arianee/permit721.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Arianee/permit721/issues"
},
"homepage": "https://github.com/Arianee/permit721#readme",
"devDependencies": {
"@arianee/permit721-sdk": "^1.19.0",
"@nomicfoundation/hardhat-network-helpers": "1.0.9",
"@nomicfoundation/hardhat-toolbox": "3.0.0",
"@openzeppelin/hardhat-upgrades": "^2.3.3",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@typechain/ethers-v6": "^0.4.3",
"@types/glob": "^8.1.0",
"@types/ms": "^0.7.33",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.40.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"glob": "^10.2.4",
"hardhat": "2.17.1",
"hardhat-tracer": "^2.6.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^5.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.0"
}
}