-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 985 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 985 Bytes
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
{
"name": "04-kickstart",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "mocha --timeout 15000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solygambas/ethereum-solidity.git"
},
"author": "solygambas",
"license": "ISC",
"bugs": {
"url": "https://github.com/solygambas/ethereum-solidity/issues"
},
"homepage": "https://github.com/solygambas/ethereum-solidity#readme",
"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.7",
"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": "8.4.1",
"eslint-config-next": "12.0.7"
}
}