-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.88 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "AirdropDAO",
"version": "0.2.0",
"private": true,
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test-react": "react-app-rewired test",
"eject-react": "react-scripts eject",
"clean": "yarn hardhat clean && rm -rf dist",
"format": "prettier --write '*/**/*.*{js,sol,json,md,ts}'",
"format:check": "prettier --check '*/**/*.*{js,sol,json,md,ts}'",
"lint": "eslint --cache . && yarn lint:sol",
"lint:ts": "eslint -c .eslintrc.json --ext \"**/*.ts\" \"**/*.test.ts\"",
"lint:sol": "solhint 'contracts/**/*.sol'",
"test": "npx hardhat test",
"verify": "npx hardhat etherscan-verify"
},
"dependencies": {
"@apollo/client": "^3.7.12",
"@gelatonetwork/gasless-onboarding": "0.0.4",
"@gelatonetwork/ops-sdk": "^2.2.0-alpha",
"@gelatonetwork/web3-functions-sdk": "^0.4.3",
"@reduxjs/toolkit": "^1.9.3",
"@thirdweb-dev/contracts": "^3.3.2",
"@thirdweb-dev/react": "^3.6.9",
"@thirdweb-dev/sdk": "^3.6.9",
"@tsconfig/recommended": "^1.0.2",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-router": "^5.1.20",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"axios": "^1.3.4",
"confetti-explosion-react": "^0.1.2",
"daisyui": "^2.46.1",
"deno-bin": "^1.30.3",
"dotenv": "^16.0.2",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^5.7.2",
"graphql": "^16.6.0",
"hardhat": "^2.12.6",
"prettier": "^2.8.3",
"prettier-plugin-solidity": "^1.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropdown-now": "^6.0.1",
"react-google-recaptcha": "^2.1.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.6.1",
"react-scripts": "^5.0.1",
"solhint": "^3.3.8",
"solhint-plugin-prettier": "^0.0.5",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.9.4",
"webpack": "^5.79.0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
"chrome >= 67",
"edge >= 79",
"firefox >= 68",
"opera >= 54",
"safari >= 14"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/react-google-recaptcha": "^2.1.5",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"https-browserify": "^1.0.0",
"os-browserify": "^0.3.0",
"process": "^0.11.10",
"react-app-rewired": "^2.2.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.0"
}
}