This repository has been archived by the owner on Oct 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "sting",
"productName": "Sting",
"description": "Elrond cross-platform wallet.",
"version": "1.4.1",
"private": true,
"main": "electron/index.js",
"author": "erdDEV team (https://erd.dev)",
"homepage": "https://sting.erd.dev",
"license": "AGPLv3",
"repository": {
"type": "git",
"url": "https://github.com/erdDEVcode/sting.git"
},
"dependencies": {
"@elrondnetwork/hw-app-elrond": "^0.1.14",
"@ledgerhq/hw-transport-node-hid": "^5.23.2",
"axios": "^0.19.2",
"chalk": "^4.1.0",
"electron-devtools-installer": "^3.1.0",
"electron-squirrel-startup": "^1.0.0",
"eventemitter3": "^4.0.7",
"i21n": "^1.2.0",
"lodash": "^4.17.19",
"logarama": "^3.2.0",
"shortcuts": "^1.6.1",
"underscore-deep-extend": "^1.1.5",
"yargs": "^15.4.1"
},
"scripts": {
"start-react": "export BROWSER=none && react-scripts start",
"build-react": "PUBLIC_URL=. react-scripts build",
"test-react": "react-scripts test",
"start": "electron-forge start",
"prebuild": "yarn build-react && rm -rf ./out/make",
"build": "yarn prebuild && yarn build:darwin && yarn build:win32 && yarn build:linux",
"build:darwin": "electron-forge make --arch=x64 --platform=darwin",
"build:win32": "electron-forge make --arch=x64 --platform=win32",
"build:linux": "electron-forge make --arch=x64 --platform=linux",
"release": "semantic-release"
},
"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"
]
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@electron-forge/cli": "6.0.0-beta.52",
"@electron-forge/maker-deb": "6.0.0-beta.52",
"@electron-forge/maker-dmg": "^6.0.0-beta.53",
"@electron-forge/maker-squirrel": "6.0.0-beta.52",
"@electron-forge/maker-zip": "6.0.0-beta.52",
"@elrondnetwork/elrond-core-js": "^1.26.2",
"@elrondnetwork/erdjs": "^1.0.5",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@nielse63/exec": "^1.0.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/github": "^7.0.7",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@tippyjs/react": "^4.1.0",
"@types/jest": "^26.0.4",
"@types/node": "^14.0.23",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/react-modal": "^3.10.6",
"@types/react-router-dom": "^5.1.5",
"@types/react-toast-notifications": "^2.4.0",
"@types/uuid": "^8.0.1",
"@welldone-software/why-did-you-render": "^4.3.2",
"bip39": "^3.0.2",
"clipboard-polyfill": "^3.0.1",
"date-fns": "^2.15.0",
"decimal.js": "^10.2.0",
"dexie": "^3.0.2",
"electron": "^10.1.3",
"emotion-styled-utils": "^2.2.3",
"emotion-theming": "^10.0.27",
"erdor": "^1.0.3",
"framer-motion": "^2.3.0",
"husky": "^4.3.0",
"minimatch": "^3.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-modal": "^3.11.2",
"react-odometerjs": "^2.1.1",
"react-qr-svg": "^2.2.2",
"react-scripts": "3.4.1",
"react-toast-notifications": "^2.4.0",
"remark-parse": "^8.0.3",
"remark-react": "^7.0.1",
"semantic-release": "^17.1.1",
"semver": "^7.3.2",
"sha3": "^2.1.3",
"styled-components": "^5.1.1",
"typescript": "^3.9.6",
"unified": "^9.2.0",
"uuid": "^8.3.0"
},
"config": {
"forge": "./forge.config.js"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}