-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.34 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
95
96
{
"name": "cvbuilder",
"version": "0.1.0",
"description": "A robust application for creating professional CVs with PDF export and desktop support",
"author": "Charly",
"private": true,
"main": "public/electron.js",
"homepage": "./",
"_comment": "`homepage1: `https://wikicrafter.github.io/cvbuilder/`,",
"dependencies": {
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"electron-is-dev": "^3.0.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"react-scripts": "5.0.1",
"react-to-print": "^2.14.15",
"styled-components": "^6.1.8",
"uuid": "^9.0.1",
"web-vitals": "^3.5.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"electron:dev": "concurrently \"cross-env BROWSER=none npm start\" \"wait-on http://localhost:3000 && electron .\"",
"electron:build": "npm run build && electron-builder",
"preelectron:build": "npm run build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"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": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^39.2.4",
"electron-builder": "^26.0.12",
"gh-pages": "^6.1.1",
"wait-on": "^9.0.3"
},
"build": {
"appId": "com.cvbuilder.app",
"productName": "CV BuilderX",
"files": [
"build/**/*",
"public/electron.js"
],
"asar": true,
"compression": "normal",
"directories": {
"buildResources": "public"
},
"win": {
"target": [
{
"target": "portable",
"arch": [
"x64"
]
}
]
},
"portable": {
"artifactName": "CV-Builder-Portable.exe"
},
"mac": {
"target": "dmg",
"category": "public.app-category.productivity"
},
"linux": {
"target": "AppImage",
"category": "Office"
}
}
}