-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
127 lines (127 loc) · 4.09 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
119
120
121
122
123
124
125
126
127
{
"name": "datenanfragen-desktop-app",
"version": "0.1.0-beta",
"private": true,
"main": "parcel_dist/electron-main/main.js",
"description": "An Electron-based desktop app for Datenanfragen.de",
"keywords": [
"privacy",
"gdpr",
"eu-gdpr",
"data-protection",
"dsar-generator"
],
"author": "The Datenanfragen.de project <dev@datenanfragen.de> (https://www.datenanfragen.de)",
"contributors": [
{
"name": "Benjamin Altpeter",
"email": "hi@bn.al",
"url": "https://benjamin-altpeter.de"
},
{
"name": "Lorenz Sieben",
"email": "me@lorenz-sieben.com",
"url": "https://lorenz-sieben.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/datenanfragen/desktop-app.git"
},
"bugs": {
"url": "https://github.com/datenanfragen/desktop-app/issues"
},
"homepage": "https://www.datenanfragen.de",
"license": "MIT",
"targets": {
"app": {
"source": "src/app/index.html",
"context": "browser",
"outputFormat": "global",
"optimize": false,
"includeNodeModules": true,
"publicUrl": ".",
"sourceMap": {
"inline": true,
"inlineSources": true
}
},
"electron-main": {
"source": "src/electron/main.ts",
"context": "electron-main",
"includeNodeModules": {
"keytar": false
},
"optimize": false,
"sourceMap": {
"inline": true,
"inlineSources": true
}
}
},
"scripts": {
"build:clean": "rimraf parcel_dist",
"build:parcel": "parcel build --no-source-maps --dist-dir parcel_dist",
"build": "npm-run-all --sequential build:clean build:parcel",
"watch:parcel": "parcel watch --dist-dir parcel_dist",
"watch": "npm-run-all --sequential build:clean watch:parcel",
"start": "electron ./parcel_dist/electron-main/main.js",
"start-dev": "electronmon ./parcel_dist/electron-main/main.js",
"lint": "eslint -c .eslintrc --ext .ts ./src",
"typecheck": "tsc --noEmit && yarn tsc --noEmit -p src/app/tsconfig.json",
"postinstall": "electron-builder install-app-deps",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"dependencies": {
"@datenanfragen/components": "/Users/zner0L/Documents/Projects/Webpages/datenanfragen.de/website/components-package",
"imapflow": "^1.0.106",
"keytar": "^7.9.0",
"nodemailer": "^6.7.5",
"preact": "^10.6.6",
"preact-i18n": "^2.3.0-preactx"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.6.0",
"@types/imapflow": "^1.0.10",
"@types/node": "^17.0.21",
"@types/nodemailer": "^6.4.4",
"@types/preact-i18n": "^2.3.1",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"buffer": "^6.0.3",
"electron": "^20.1.0",
"electron-builder": "^23.3.3",
"electronmon": "^2.0.2",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"husky": "4.3.7",
"lint-staged": "^12.3.5",
"npm-run-all": "^4.1.5",
"parcel": "^2.6.2",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.2"
},
"alias": {
"react": "preact/compat",
"react-dom/test-utils": "preact/test-utils",
"react-dom": "preact/compat",
"react/jsx-runtime": "preact/jsx-runtime"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged && yarn typecheck"
}
},
"lint-staged": {
"*.{ts,js,tsx,jsx,scss,json}": [
"prettier --write"
],
"*.{ts,js,tsx,jsx}": [
"eslint --fix"
]
}
}