-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.14 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
{
"name": "metastellar",
"version": "1.0.0",
"description": "Metastellar DApp",
"main": "index.js",
"scripts": {
"test": "mocha",
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/astrocket/metastellar.git"
},
"keywords": [
"Ethereum",
"Metadium",
"DApp"
],
"author": "Astro Lee",
"license": "ISC",
"bugs": {
"url": "https://github.com/astrocket/metastellar/issues"
},
"homepage": "https://github.com/astrocket/metastellar",
"dependencies": {
"bignumber.js": "^7.2.1",
"express": "^4.16.3",
"fs-extra": "^6.0.1",
"ganache-cli": "^6.1.0",
"lodash": "^4.17.10",
"mocha": "^5.2.0",
"next": "^6.0.3",
"npm": "^6.1.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-s-alert": "^1.4.1",
"semantic-ui-css": "^2.3.1",
"semantic-ui-react": "^0.80.2",
"solc": "^0.4.24",
"truffle-hdwallet-provider": "0.0.5",
"web3": "^1.0.0-beta.34"
},
"next": {
"routes": {
"/address/:address": "pages/address"
}
}
}