-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.12 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
{
"name": "dwarfity",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "Kennie Harold Mantac",
"license": "ISC",
"private": "true",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"node:start": "nodemon node_server/app.js",
"solhint": "./node_modules/.bin/solhint -f table contracts/**/*.sol",
"hardhat:test": "hardhat test",
"prettier:solidity": "./node_modules/.bin/prettier --write contracts/**/*.sol",
"ganache:deploy": "hardhat run --network ganache scripts/deploy.js",
"ganache:mintgen": "hardhat run --network ganache scripts/mintGenNFTs.js"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@openzeppelin/contracts": "^4.3.2",
"axios": "^0.24.0",
"bootstrap": "^5.1.3",
"canvas": "^2.8.0",
"cloudinary": "^1.27.1",
"connect-mongo": "^4.6.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.17.2",
"mongoose": "^6.0.12",
"react": "^17.0.2",
"react-bootstrap": "^2.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-router-dom": "^6.0.1",
"react-scripts": "^4.0.3",
"redux": "^4.1.2",
"redux-thunk": "^2.4.0",
"validator": "^13.7.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"dotenv": "^10.0.0",
"eslint-config-prettier": "^8.3.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.1",
"hardhat": "^2.6.8",
"hardhat-gas-reporter": "^1.0.4",
"nodemon": "^2.0.15",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"redux-devtools-extension": "^2.13.9",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.17",
"web3": "^1.6.0"
}
}