forked from owanhunte/ethereum-solidity-course-updated-code
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 943 Bytes
/
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
{
"name": "kickstart-js",
"version": "3.0.0",
"description": "Kickstart/CrowdCoin App based on the udemy.com course Ethereum and Solidity: The Complete Developer's Guide",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "mocha"
},
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"dependencies": {
"@truffle/hdwallet-provider": "^1.5.1",
"dotenv": "^10.0.0",
"fs-extra": "^10.0.0",
"ganache-cli": "^6.12.2",
"mocha": "^9.1.3",
"next": "12.0.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.4",
"solc": "^0.8.9",
"web3": "^1.6.0"
},
"devDependencies": {
"eslint": "7.32.0",
"eslint-config-next": "12.0.2",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.4.1"
}
}