-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.05 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
{
"name": "rafa-auto-center",
"version": "0.1.0",
"private": true,
"author": {
"name": "Jailson",
"email": "[email protected]",
"url": "https://japps.site"
},
"homepage": ".",
"main": "build/electron.js",
"dependencies": {
"@use-it/event-listener": "^0.1.3",
"apexcharts": "^3.15.2",
"axios": "^0.20.0",
"concurrently": "4.1.2",
"electron-clipboard-extended": "^1.1.1",
"electron-is-dev": "^1.1.0",
"electron-pdf-window": "^1.0.12",
"history": "^4.10.1",
"image-to-base64": "^2.0.1",
"immutable": "^4.0.0-rc.12",
"jspdf": "1.5.3",
"jspdf-autotable": "3.2.5",
"moment": "^2.24.0",
"moment-timezone": "^0.5.31",
"node-gyp": "^7.1.0",
"pdf-poppler": "^0.2.1",
"react": "^16.9.0",
"react-apexcharts": "^1.3.6",
"react-dom": "^16.9.0",
"react-hotkeys-hook": "^2.3.1",
"react-keydown": "^1.9.12",
"react-live-clock": "^5.0.5",
"react-moment": "^1.0.0",
"react-redux": "^7.1.1",
"react-router-dom": "^5.0.1",
"react-router-redux": "^4.0.8",
"react-scripts": "^3.2.0",
"react-text-loop": "^2.3.0",
"recoil": "^0.1.2",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"semantic-ui-calendar-react": "^0.15.3",
"semantic-ui-css": "^2.4.1",
"semantic-ui-offline": "^2.4.1-1",
"semantic-ui-react": "^2.0.0",
"typescript": "4.0.3",
"wait-on": "3.3.0"
},
"build": {
"appId": "com.rafa_auto_center.seu-app",
"productName": "RafaAutoCenter",
"copyright": "Copyright © 2020 Japps",
"win": {
"target": "NSIS",
"icon": "src/assets/logo.ico"
},
"mac": {
"category": "public.app-category.utilities"
},
"files": [
"**/*"
],
"extraFiles": [
{
"from": "notas",
"to": "resources/notas",
"filter": [
"**/*"
]
},
{
"from": "assets",
"to": "resources/assets",
"filter": [
"**/*"
]
},
{
"from": "server",
"to": "resources/server",
"filter": [
"**/*"
]
}
],
"directories": {
"buildResources": "assets",
"output": "dist"
}
},
"scripts": {
"start": "rescripts start",
"build": "rescripts build",
"test": "rescripts test",
"eject": "react-scripts eject",
"dev": "concurrently \" yarn start\" \"wait-on http://localhost:3000 && electron build/electron.js\"",
"postinstall": "electron-builder install-app-deps",
"preelectron-build": "yarn build",
"buildall": "yarn build && electron-builder -w"
},
"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": {
"@rescripts/cli": "^0.0.14",
"@rescripts/rescript-env": "^0.0.12",
"electron": "^10.1.3",
"electron-builder": "^22.8.1",
"electron-packager": "^15.1.0"
}
}