-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.65 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.65 KB
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
{
"name": "identity-webclient",
"version": "0.0.1",
"private": true,
"homepage": ".",
"dependencies": {
"b64-to-blob": "^1.2.19",
"calculate-size": "^1.1.1",
"cors": "^2.8.4",
"electron": "^2.0.8",
"moment": "^2.22.2",
"path-to-regexp": "^2.4.0",
"qrcode.react": "^0.8.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-iframe": "^1.2.0",
"react-markdown": "^3.6.0",
"react-markdown-renderer": "^1.4.0",
"react-redux": "^5.0.6",
"react-redux-toastr": "^7.2.3",
"react-responsive-redux": "^0.4.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-hash-link": "^1.2.0",
"react-router-redux": "^5.0.0-alpha.9",
"redux": "^3.7.2",
"styled-components": "^4.0.0"
},
"devDependencies": {
"babel-jest": "^23.4.0",
"chai": "^4.1.2",
"concurrently": "^3.5.1",
"cross-env": "^5.1.3",
"jest": "^23.4.0",
"mocha": "^5.2.0",
"node-fetch": "^1.7.3",
"npm-run-all": "^4.1.2",
"opn": "^5.2.0",
"react-scripts": "2.0.5"
},
"scripts": {
"start": "cross-env PORT=4099 REACT_APP_MOCK=1 REACT_APP_API_URL=http://localhost:7773 react-scripts start",
"build": "cross-env REACT_APP_API_URL=http://127.0.0.1:7773 react-scripts build",
"build:electron": "cross-env REACT_APP_IS_ELECTRON=1 react-scripts build",
"copy:electron": "rsync -r -a --exclude '*.map' ./build/* ../masterwallet-desktop/public",
"electron": "npm-run-all build:electron copy:electron",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not ie <= 11",
"not op_mini all"
]
}