-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.52 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.52 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
93
94
{
"name": "SysUtilApp",
"main": "app/main.js",
"version": "1.0.0",
"author": "Paloma Macetko <cmacetko@gmail.com>",
"description": "Kit de Utilitários para o dia a dia de um desenvolvedor web",
"homepage": ".",
"private": false,
"scripts": {
"postinstall": "install-app-deps",
"build": "gulp build",
"start": "gulp",
"dist": "gulp dist"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^25.3.0",
"electron": "7.2.4",
"electron-builder": "^20.44.4",
"electron-packager": "^15.2.0",
"electron-react-devtools": "^0.5.3",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.2.0",
"gulp-concat": "^2.6.1",
"gulp-livereload": "^4.0.1",
"jest": "^25.3.0",
"react-test-renderer": "^16.8.6"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/styles": "^4.11.3",
"@mrmgomes/boleto-utils": "^1.2.0",
"@types/material-ui": "^0.21.7",
"checksslcertificate": "^1.0.5",
"clsx": "^1.1.1",
"consulta-cnpj-ws": "^2.0.0",
"copy-to-clipboard": "^3.3.1",
"crypto-js": "^4.0.0",
"dateformat": "^4.5.1",
"dochelper": "^1.0.4",
"electron-devtools-installer": "^3.1.1",
"electron-is-dev": "^1.1.0",
"faker-br": "^0.3.0",
"faz-um-pix": "^2.0.2",
"geoip-lite": "^1.4.2",
"ini": "^1.3.5",
"jimp": "^0.16.1",
"jwt-decode": "^3.1.2",
"leite": "^0.2.0",
"material-ui": "^0.20.2",
"native-dns": "^0.7.0",
"nodejs-base64-encode": "^1.1.0",
"nodejs-traceroute": "^1.2.0",
"ping": "^0.4.0",
"qrcode": "^1.4.4",
"re-resizable": "^6.9.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-dropzone": "^11.3.0",
"react-helmet": "^6.1.0",
"react-hook-form": "^6.15.1",
"react-loading-overlay": "^1.0.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-spinners": "^0.10.4",
"react-syntax-highlighter": "^15.4.3",
"react-toast-notifications": "^2.4.0",
"redux": "^4.0.5",
"sinesp-api": "^3.0.0",
"uuid": "^8.3.2",
"valid-url": "^1.0.9"
},
"build": {
"appId": "com.cmacetko.sysutilapp",
"productName": "sysutilapp",
"win": {
"target": [
{
"target": "dir",
"arch": [
"x64",
"ia32"
]
}
]
}
}
}