-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.63 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.63 KB
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
{
"name": "voti",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@types/react": "^18.0.1",
"autoprefixer": "^10.4.1",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.2",
"hardhat": "^2.9.2",
"postcss": "8.4.5",
"tailwindcss": "3.0.9"
},
"dependencies": {
"@ethersproject/constants": "^5.6.0",
"@ethersproject/contracts": "^5.6.0",
"@nrwl/next": "^14.0.5",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.29",
"@types/react-dom": "^18.0.0",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"dotenv": "^16.0.0",
"ethers": "^5.6.2",
"next": "12.1.4",
"postcss-import": "^14.1.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-scripts": "5.0.1",
"typescript": "^4.6.3",
"web-vitals": "^2.1.4",
"web3modal": "^1.9.5"
},
"scripts": {
"start": "next start",
"dev": "next dev",
"build": "next build",
"test": "next test",
"lint": "next lint",
"build-styles:dev": "npx tailwindcss -i ./styles/_app.css -o ./styles/styles.css --watch"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}