-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
62 lines (62 loc) · 1.61 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
{
"name": "@faircrypto/xenft",
"version": "0.5.1",
"description": "XENFT",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"author": "J.Levin, L.Belyaev",
"license": "MIT",
"keywords": [
"Fair Crypto Foundation",
"XEN",
"XEN Crypto",
"Ethereum",
"ERC-721",
"XENNFT",
"XEN Torrent",
"Bulk Minting"
],
"dependencies": {
"@faircrypto/xen-crypto": "^0.6.0",
"@faircrypto/xen-libs": "^0.1.0",
"@openzeppelin/contracts": "^4.7.3",
"operator-filter-registry": "^1.3.1"
},
"devDependencies": {
"@ethersproject/providers": "^5.7.2",
"@truffle/hdwallet-provider": "^2.0.15",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"ganache-time-traveler": "^1.0.16",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"solhint": "^3.3.7",
"truffle-assertions": "^0.9.2",
"truffle-plugin-verify": "^0.5.28"
},
"scripts": {
"compile": "truffle compile -all",
"test": "truffle test",
"lint": "npm run lint:sol",
"lint:fix": "npm run lint:sol:fix",
"lint:sol": "solhint 'contracts/**/*.sol' && prettier -c 'contracts/**/*.sol'",
"lint:sol:fix": "solhint --fix 'contracts/**/*.sol' && prettier --write \"contracts/**/*.sol\"",
"husky:install": "husky install",
"npm-publish": "truffle compile && npm publish"
},
"files": [
"/build/contracts/*.json",
"/contracts/**/*.sol"
],
"lint-staged": {
"contracts/*.sol": [
"solhint --fix",
"prettier --write"
],
"**/*.(md|json)": "prettier --write"
}
}