-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.85 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
{
"name": "sakura",
"version": "0.0.1",
"description": "Sakura is a secure and user-friendly Desktop wallet for the Polkadot ecosystem",
"license": "GPL v3",
"author": {
"name": "W3 Finance"
},
"private": true,
"repository": "https://github.com/w3finance/sakura",
"homepage": "./",
"main": "public/electron.js",
"scripts": {
"start": "rescripts start",
"build": "rescripts build",
"test": "rescripts test",
"postinstall": "electron-builder install-app-deps",
"dev": "concurrently \"cross-env BROWSER=none yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"clean": "rimraf dist/*",
"dist": "yarn build && yarn clean && electron-builder build -mwl --x64 --config ./electron-builder.yml"
},
"dependencies": {
"electron-is-dev": "^1.2.0",
"electron-store": "^5.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@material-ui/core": "^4.9.12",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.51",
"@polkadot/api": "^1.11.2",
"@polkadot/keyring": "^2.8.1",
"@polkadot/util-crypto": "^2.8.1",
"@rescripts/cli": "^0.0.14",
"@rescripts/rescript-env": "^0.0.12",
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"electron": "^8.2.4",
"electron-builder": "^22.5.1",
"i18next": "^19.4.4",
"notistack": "^0.9.11",
"react-i18next": "^11.4.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1",
"wait-on": "^4.0.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"keywords": [
"Polkadot",
"Kusama",
"Edgeware"
]
}