-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 918 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
{
"name": "kickstart",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha",
"compile": "node compile.js",
"deploy": "node deploy.js",
"solhint": "solhint -f table **/*.sol",
"prettier:solidity": "prettier --write **/*.sol",
"dev": "node server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@truffle/hdwallet-provider": "^1.5.1",
"dotenv": "^16.0.1",
"fs-extra": "^10.0.0",
"ganache-cli": "^6.12.2",
"mocha": "^9.1.2",
"next": "^12.2.5",
"next-routes": "^1.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.1.3",
"solc": "^0.4.17",
"web3": "^1.6.0"
},
"devDependencies": {
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5"
}
}