-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
102 lines (102 loc) · 2.74 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
{
"name": "invoicify",
"version": "0.4.15",
"author": "2AM Devs",
"description": "Digitalizes your billing process",
"private": true,
"main": "./public/electron.js",
"build": {
"appId": "invoicify.2am",
"publish": [
{
"provider": "github",
"owner": "2AMDevs",
"repo": "invoicify-app"
}
],
"extraResources": [
"./public/**"
],
"win": {
"icon": "./public/icon.png"
},
"mac": {
"icon": "./public/icon.png",
"category": "public.app-category.utilities"
}
},
"repository": {
"type": "git",
"url": "https://github.com/2AMDevs/invoicify-app.git"
},
"homepage": "./",
"dependencies": {
"@craco/craco": "^5.6.4",
"@pdf-lib/fontkit": "^1.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@uifabric/icons": "^7.3.58",
"classnames": "^2.2.6",
"convert-rupees-into-words": "^1.0.6",
"cross-env": "^7.0.2",
"electron-is-dev": "^1.2.0",
"electron-updater": "^6.3.0",
"github-markdown-css": "^4.0.0",
"node-sass": "^9.0.0",
"office-ui-fabric-react": "^7.145.0",
"pdf-lib": "^1.9.0",
"pdf-to-printer": "^1.4.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-markdown": "^5.0.3",
"react-pdf": "^5.1.0",
"react-router-dom": "^5.2.0",
"react-scripts": "5.0.1",
"read-excel-file": "^5.8.4"
},
"scripts": {
"react-start": "craco start",
"react-build": "craco build",
"react-test": "craco test",
"react-eject": "craco eject",
"electron-build": "electron-builder",
"electron-deploy": "electron-builder build --win --publish always",
"build": "npm run react-build && npm run electron-build",
"ship": "npm run react-build && npm run electron-deploy",
"lint": "node_modules/eslint/bin/eslint.js src/**/*.js --fix",
"lint-win": "node_modules/.bin/eslint src/**/*.js --fix",
"start": "concurrently \"cross-env BROWSER=none npm run react-start\" \"wait-on http://localhost:3000 && electron .\""
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:react/recommended"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"concurrently": "^5.2.0",
"electron": "^22.3.25",
"electron-builder": "^24.13.3",
"electron-reload": "^1.5.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.23.4",
"wait-on": "^7.2.0"
},
"peerDependencies": {
"eslint-plugin-import": "^2.22.1"
}
}