-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.3 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
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
{
"name": "loanbook",
"productName": "Loanbook",
"description": "Simple lending app",
"version": "v0.1.4",
"private": true,
"main": "public/electron.js",
"homepage": "./",
"author": {
"name": "William Mwai",
"email": "william@ryanada.com",
"url": "https://loanbook.io"
},
"dependencies": {
"@date-io/moment": "^1.3.12",
"@material-ui/core": "^4.9.4",
"@material-ui/icons": "^4.5.1",
"@material-ui/lab": "^4.0.0-alpha.34",
"@material-ui/pickers": "^3.2.8",
"@mdi/font": "^4.7.95",
"clsx": "latest",
"countries-list": "^2.5.0",
"cross-fetch": "^3.0.4",
"currency-codes": "^1.5.1",
"electron-is-dev": "^1.1.0",
"jquery": "^3.4.1",
"material-table": "^1.54.1",
"material-ui-phone-number": "^2.2.4",
"moment": "^2.24.0",
"prop-types": "latest",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-intl-tel-input": "^7.1.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.0",
"react-social-login": "3.4.6",
"react-sticky": "^6.0.3",
"react-to-print": "^2.5.1",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"simple-gdpr": "^1.1.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploy": "gh-pages -d build",
"start-electron": "electron ."
},
"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": {
"@mdi/js": "^4.7.95",
"@mdi/react": "^1.2.1",
"electron": "^7.1.2",
"electron-builder": "^22.1.0",
"electron-packager": "^14.1.1",
"gh-pages": "^2.1.1"
},
"build": {
"appId": "com.jisort.loanbook",
"directories": {
"buildResources": "build"
},
"win": {
"target": "appx"
},
"appx": {
"identityName": "32794Ryanada.Loanbook",
"publisher": "CN=3F1778ED-A4AF-4D71-8FBD-130BB2606A60",
"publisherDisplayName": "Ryanada",
"applicationId": "Ryanada.Loanbook",
"displayName": "Loanbook"
}
}
}