-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.96 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "akashi-ui",
"version": "1.0.0",
"description": "Gav's Substrate UI",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npm-run-all --parallel webpack-dev server",
"build": "npm-run-all --parallel webpack-prod server",
"webpack-dev": "webpack --mode development --watch --debug",
"webpack-prod": "webpack --mode production --watch --debug",
"server": "nodemon --watch src/ --verbose --exec ./node_modules/.bin/babel-node server.js --ext jsx,js --presets env,react"
},
"babel": {
"presets": [
"env",
"react"
]
},
"keywords": [
"polkadot",
"substrate",
"ui"
],
"author": "Gav Wood",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"express": "^4.16.3",
"nodemon": "^1.18.3",
"npm-run-all": "^4.1.3",
"webpack": "^4.29.0",
"webpack-cli": "^3.1.1"
},
"dependencies": {
"@polkadot/api": "^0.90.1",
"@polkadot/types": "^0.81.1",
"@polkadot/util": "^1.1.1",
"@polkadot/util-crypto": "^1.1.1",
"@polkadot/wasm-crypto": "^0.3.1",
"@types/web3": "^1.0.19",
"bignumber.js": "^9.0.0",
"bip39": "^2.5.0",
"blakejs": "^1.1.0",
"bs58": "^4.0.1",
"css-loader": "^2.1.0",
"ethashjs": "^0.0.7",
"ethereumjs-block": "^2.2.0",
"ethereumjs-util": "^6.1.0",
"file-loader": "^3.0.1",
"levelup": "^4.1.0",
"memdown": "^5.0.0",
"oo7": "^0.7.9",
"oo7-react": "^0.8.10",
"oo7-substrate": "^0.8.0",
"pbkdf2": "^3.0.17",
"polkadot-identicon": "^1.1.32",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"semantic-ui-css": "^2.3.3",
"semantic-ui-react": "^0.84.0",
"style-loader": "^0.23.1",
"tweetnacl": "^1.0.1",
"url-loader": "^1.0.1",
"uuid": "^3.3.2",
"web3": "^1.2.1",
"xxhashjs": "^0.2.2"
}
}