-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.73 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
{
"name": "hashlips_nft_minting_dapp",
"version": "1.0.0",
"description": "HashLips minting dapp is a quick and easy way to connect your smart contract and start minting NFTs.",
"private": true,
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.4.2",
"@mui/material": "^5.4.2",
"aos": "^2.3.4",
"ethers": "^5.6.9",
"keccak256": "^1.0.6",
"merkletreejs": "^0.2.32",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"react-scripts": "4.0.3",
"redux": "^4.1.1",
"redux-thunk": "^2.3.0",
"styled-components": "^5.3.0",
"use-interval": "^1.4.0",
"web-vitals": "^1.0.1",
"web3": "^1.5.1",
"web3-eth-contract": "^1.5.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.29.4"
},
"author": "Daniel Eugene Botha (HashLips)",
"license": "MIT",
"scripts": {
"lint": "eslint ./src",
"start": "react-scripts start",
"build": "react-scripts build"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"parser": "babel-eslint",
"extends": [
"standard",
"standard-jsx",
"standard-react"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}