-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 2.69 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
{
"name": "get-paid",
"description": "Simple Electron application to manage invoices ",
"author": {
"name": "Paul Cordonnier",
"email": "[email protected]"
},
"version": "0.0.1",
"private": true,
"dependencies": {
"@uiw/react-md-editor": "^3.14.3",
"bootstrap": "^5.1.3",
"classnames": "^2.3.1",
"date-fns": "^2.28.0",
"electron-is-dev": "^2.0.0",
"nedb": "^1.8.0",
"node-sass": "^7.0.1",
"react": "^18.1.0",
"react-bootstrap": "^2.4.0",
"react-dom": "^18.1.0",
"react-hook-form": "^7.32.0",
"react-icons": "^4.4.0",
"react-markdown": "^8.0.3",
"react-scripts": "^5.0.1",
"react-table": "^7.8.0"
},
"devDependencies": {
"@babel/helper-builder-react-jsx": "^7.16.7",
"concurrently": "^7.2.1",
"electron": "^19.0.4",
"electron-builder": "^23.0.3",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"prettier": "^2.6.2",
"wait-on": "^6.0.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "concurrently \"react-scripts start\" \"wait-on http://localhost:3000 && electron .\"",
"build": "react-scripts build && electron-builder -c.extraMetadata.main=build/electron.js"
},
"homepage": "./",
"main": "public/electron.js",
"build": {
"appId": "com.paulcordonnier.get-paid",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
},
"mac": {
"category": "public.app-category.business",
"icon": "./public/icon.png"
},
"win": {
"icon": "./public/icon.png"
},
"linux": {
"icon": "./public/icon.png",
"category": "Office"
}
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"es6": true,
"browser": true
},
"plugins": [
"react",
"react-hooks"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:prettier/recommended"
],
"rules": {
"react/display-name": "off",
"prettier/prettier": "error",
"react/prop-types": 0
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2021,
"ecmaFeatures": {
"jsx": true
}
},
"settings": {
"react": {
"version": "17.0"
}
},
"globals": {
"fetch": false,
"console": false
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}