-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.38 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
{
"name": "chainshare",
"version": "0.1.0",
"license": "ISC",
"scripts": {
"dev": "vite",
"styles": "ts-node -P tsconfig.json -r tsconfig-paths/register src/tools/index.ts",
"lint:web": "eslint --no-fix src",
"build:web": "vite build",
"lint:sol": "solhint contracts/*",
"test:sol": "hardhat test --network hardhat",
"coverage:sol": "hardhat coverage --network hardhat",
"build:sol": "hardhat compile",
"deploy:sol": "hardhat run scripts/deploy.ts",
"verify:sol": "hardhat run scripts/verify.ts",
"deploy:sol:ropsten": "npm run deploy:sol -- --network ropsten",
"deploy:sol:mainnet": "npm run deploy:sol -- --network mainnet",
"verify:sol:ropsten": "npm run verify:sol -- --network ropsten",
"verify:sol:mainnet": "npm run verify:sol -- --network mainnet"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^7.2.0",
"@typechain/hardhat": "^2.3.1",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^12.20.38",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.2",
"@types/uuid": "^8.3.3",
"@types/vite-plugin-react-svg": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"@vitejs/plugin-react": "^1.1.3",
"autoprefixer": "^10.4.0",
"chai": "^4.3.4",
"cssnano": "^5.0.8",
"dotenv": "^10.0.0",
"eslint": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.3",
"ethereum-waffle": "^3.4.0",
"hardhat": "^2.8.0",
"hardhat-gas-reporter": "^1.0.6",
"ipfs-http-client": "^55.0.0",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"postcss-import": "^14.0.2",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.17",
"tailwindcss": "^3.0.7",
"ts-node": "^10.4.0",
"typechain": "^5.2.0",
"typescript": "^4.5.4",
"vite": "~2.6.14",
"vite-plugin-react-svg": "^0.2.0"
},
"dependencies": {
"@reduxjs/toolkit": "^1.7.1",
"big-integer": "^1.6.51",
"ethers": "^5.5.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-router": "^6.2.1",
"react-router-dom": "^6.2.1",
"use-metamask": "^1.3.2",
"uuid": "^8.3.2"
}
}