This repository has been archived by the owner on Mar 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
62 lines (62 loc) · 1.64 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
{
"name": "substrate-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.0",
"babel-loader": "^7.1.4",
"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.20.2",
"webpack-cli": "^3.1.1"
},
"dependencies": {
"@polkadot/wasm-crypto": "^0.3.1",
"bip39": "^2.5.0",
"blakejs": "^1.1.0",
"bs58": "^4.0.1",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"jdenticon": "^2.1.1",
"oo7": "^0.7.3",
"oo7-react": "^0.8.3",
"oo7-substrate": "^0.8.0",
"pbkdf2": "^3.0.17",
"polkadot-identicon": "^1.1.45",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"semantic-ui-css": "^2.3.3",
"semantic-ui-react": "^0.79.1",
"style-loader": "^0.20.3",
"tweetnacl": "^1.0.0",
"url-loader": "^1.0.1",
"uuid": "^3.3.2",
"xxhashjs": "^0.2.2"
}
}