-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.46 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
{
"name": "finances",
"version": "1.0.0",
"description": "a local electron app for simple financial use cases",
"main": "./dist/main.bundle.js",
"scripts": {
"start": "electron ./dist/main.bundle.js",
"build": "npm run build:main && npm run build:renderer",
"build:main": "webpack --config webpack.main.config.js",
"build:renderer": "webpack --config webpack.renderer.config.js",
"dev": "concurrently \"npm run dev:renderer\" \"wait-on http://localhost:8080 && npm run dev:main\"",
"dev:renderer": "webpack serve --config webpack.renderer.config.js --mode development",
"dev:main": "electron ./src/main/main.js",
"pack": "electron-builder --dir --mac",
"dist": "electron-builder --win --mac --linux"
},
"keywords": [],
"author": "Malo Le Mestre",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@types/chart.js": "^2.9.41",
"@types/electron": "^1.6.10",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"concurrently": "^8.2.2",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.9.0",
"electron": "^28.1.3",
"electron-builder": "^24.9.1",
"html-webpack-plugin": "^5.6.0",
"postcss": "^8.4.33",
"postcss-loader": "^7.3.4",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"style-loader": "^3.3.4",
"tailwindcss": "^3.4.1",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"wait-on": "^7.2.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"chart.js": "^4.4.1",
"formik": "^2.4.5",
"fs": "^0.0.1-security",
"lucide-react": "^0.316.0",
"path": "^0.12.7",
"react-chartjs-2": "^5.2.0",
"react-hot-toast": "^2.4.1",
"react-router-dom": "^6.21.3",
"yup": "^1.3.3"
},
"build": {
"appId": "io.dopee.finances",
"productName": "Finances",
"directories": {
"output": "dist_packaged"
},
"files": [
"dist/**/*",
"node_modules/**/*",
"package.json"
],
"win": {
"target": "nsis",
"icon": "dist/icons/logo.ico"
},
"mac": {
"target": "dmg",
"icon": "dist/icons/logo.icns"
},
"linux": {
"target": "AppImage",
"icon": "dist/icons/logo.png"
}
}
}