-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.63 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.63 KB
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
{
"name": "blockchain-dns",
"version": "1.0.0",
"description": "Simple DNS infrastructure and server based on Ethereum blockchain and Solidity smart-contract",
"main": "simpleDNS.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ilyapt/blockchain-dns.git"
},
"keywords": [
"blockchain",
"ethereum",
"solidity",
"smartcontract",
"nodejs",
"dns"
],
"author": "Ilya Petrusenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/ilyapt/blockchain-dns/issues"
},
"homepage": "https://github.com/ilyapt/blockchain-dns#readme",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.26.0",
"css-loader": "^0.28.7",
"html-webpack-plugin": "^2.29.0",
"react-hot-loader": "^3.0.0-beta.7",
"style-loader": "^0.18.2",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.6.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.19.1"
},
"dependencies": {
"antd": "^2.13.3",
"axios": "^0.16.2",
"express": "^4.15.4",
"ip": "^1.1.5",
"lodash": "^4.17.4",
"morgan": "^1.8.2",
"native-dns": "^0.7.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"web3": "^0.19.1"
}
}