forked from meemproject/meem-id-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.49 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
{
"name": "@meemproject/meem-id-contracts",
"private": true,
"version": "1.1.2",
"description": "Meem Ids",
"author": "Meem Project",
"homepage": "https://meem.wtf",
"scripts": {
"#build": "concurrently -r \"yarn build:sol\" \"yarn build:ts\"",
"build": "yarn build:sol && yarn build:ts",
"test:build": "waffle",
"clean": "rm -rf cache artifacts abi dist typechain",
"build:ts": "tsc -p .",
"build:sol": "hardhat compile",
"hardhat": "hardhat",
"accounts": "hardhat accounts",
"deployDiamond": "hardhat deployDiamond",
"upgradeDiamond": "hardhat upgradeDiamond",
"upgradeFacet": "hardhat upgradeFacet",
"test": "hardhat test --network hardhat",
"coverage": "hardhat coverage",
"network": "hardhat node",
"console": "hardhat console",
"watch": "concurrently -r --kill-others \"chokidar 'tasks/**/*.ts' 'scripts/**/*.ts' 'hardhat.config.ts' -c 'yarn build:ts'\" \"chokidar 'contracts/**/*.sol' -c 'yarn build:sol'\"",
"verify": "hardhat verify",
"lint": "eslint --max-warnings=0 --ext=.ts,.tsx . && tsc -p . --noEmit",
"lint:fix": "eslint --fix --ext=.ts,.tsx .",
"release": "semantic-release",
"size": "hardhat size-contracts",
"createABI": "tsnd --transpile-only scripts/createABI.ts",
"generateMeemTypes": "typechain --target ethers-v5 './types/Meem.json'"
},
"devDependencies": {
"@float-capital/solidity-coverage": "^0.7.17",
"@kengoldfarb/semantic-release-config": "^1.0.3",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@solidstate/contracts": "^0.0.27",
"@typechain/ethers-v5": "^6.0.1",
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.4",
"@types/express": "^4.17.11",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.2",
"@types/prompt": "^1.1.0",
"base64-sol": "^1.0.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chokidar-cli": "^3.0.0",
"concurrently": "^6.2.1",
"eslint": "^7.32.0",
"eslint-config-kengoldfarb": "^1.3.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.0.32",
"fs-extra": "^10.0.0",
"hardhat": "^2.1.1",
"hardhat-abi-exporter": "^2.2.1",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.5",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.12",
"prompt": "^1.1.0",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.3"
},
"dependencies": {
"dotenv": "^10.0.0",
"solc-0.8": "npm:solc@^0.8.4"
}
}