-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.06 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
74
75
76
77
{
"name": "PolkaKey",
"version": "0.8.0",
"description": "A secure and simple way to generate a Polkadot/Kusama/Edgeware address",
"private": true,
"author": {
"name": "W3 Finance"
},
"repository": {
"type": "git",
"url": "https://github.com/w3finance/PolkaKey"
},
"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.1.0",
"electron-log": "^4.1.1",
"electron-updater": "^4.2.5",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@material-ui/core": "^4.9.8",
"@material-ui/icons": "^4.9.1",
"@polkadot/keyring": "^2.8.1",
"@polkadot/react-identicon": "^0.52.1",
"@polkadot/util": "^2.8.1",
"@polkadot/util-crypto": "^2.8.1",
"@rescripts/cli": "^0.0.14",
"@rescripts/rescript-env": "^0.0.12",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"concurrently": "^5.1.0",
"cross-env": "^7.0.2",
"electron": "^8.2.0",
"electron-builder": "^22.4.1",
"electron-notarize": "^0.3.0",
"i18next": "^19.3.4",
"js-yaml": "^3.13.1",
"react-i18next": "^11.3.4",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1",
"wait-on": "^4.0.1"
},
"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": [
"Electron",
"Polkadot",
"Kusama",
"Edgeware"
]
}