-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 3.21 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
{
"name": "personal-analytics",
"description": "PersonalAnalytics is a privacy-protecting, open-source self-monitoring software",
"version": "0.0.57",
"main": "dist-electron/main/index.js",
"type": "module",
"author": {
"name": "HASEL",
"email": "dev@hasel.dev"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build && electron-builder --config electron-builder.config.cjs",
"build:mac": "npm run build:mac:arm64 && npm run build:mac:x64",
"build:mac:arm64": "vue-tsc --noEmit && vite build && electron-builder --mac --arm64 --config electron-builder.config.cjs",
"build:mac:x64": "vue-tsc --noEmit && vite build && electron-builder --mac --x64 --config electron-builder.config.cjs",
"build:win": "vue-tsc --noEmit && vite build && electron-builder --win --config electron-builder.config.cjs",
"postinstall": "patch-package && electron-builder install-app-deps",
"preview": "vite preview",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts,.vue --fix",
"lint:fix": "eslint --fix . --ext .js,.jsx,.ts,.tsx,.vue",
"format": "prettier --write .",
"test": "node --experimental-vm-modules node_modules/jest-cli/bin/jest.js --config jest.config.json",
"test:retrospection": "npm test -- --runInBand electron/main/__tests__/RetrospectionService.test.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/HASEL-UZH/PersonalAnalytics"
},
"devDependencies": {
"@electron/notarize": "^2.3.0",
"@rushstack/eslint-patch": "^1.15.0",
"@tailwindcss/typography": "^0.5.10",
"@types/better-sqlite3": "^7.6.9",
"@types/dompurify": "^3.0.5",
"@types/jsdom": "^21.1.7",
"@types/jest": "^29.5.14",
"@types/d3": "^7.4.3",
"@types/node-schedule": "^2.1.6",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"autoprefixer": "^10.4.24",
"daisyui": "^4.6.1",
"electron": "^28.2.2",
"electron-builder": "^26.7.0",
"electron-updater": "^6.7.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-vue": "^9.21.1",
"jest": "^29.7.0",
"less": "^4.5.1",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.19",
"patch-package": "^8.0.1",
"tree-kill": "^1.2.2",
"ts-jest": "^29.4.9",
"typescript": "^5.3.3",
"vite": "^5.4.21",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.5",
"vue": "^3.5.27",
"vue-eslint-parser": "^9.4.2",
"vue-tsc": "^2.1.6"
},
"dependencies": {
"archiver": "^7.0.1",
"d3": "^7.9.0",
"better-sqlite3": "^9.4.0",
"better-sqlite3-multiple-ciphers": "^9.4.0",
"dompurify": "^3.3.2",
"electron-log": "^5.1.1",
"form-data": "^4.0.5",
"jsdom": "^25.0.1",
"node-schedule": "^2.1.1",
"typeorm": "^0.3.28",
"user-input-tracker": "file:PA.UserInputTracker/typescript",
"vue-router": "^4.6.4",
"windows-activity-tracker": "file:PA.WindowsActivityTracker/typescript"
}
}