-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.74 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.74 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
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
128
129
{
"name": "addiction-tracker",
"version": "0.0.27",
"author": {
"name": "Charles Schaefer"
},
"description": "Addiction Tracker - An app for tracking substance addiction and habits (made with Tauri)",
"repository": {
"type": "git",
"url": "https://github.com/charlesschaefer/addiction-tracker.git"
},
"license": "MIT",
"homepage": "https://addictiontracker.app",
"keywords": [
"health",
"addiction",
"substance abuse",
"alcohol",
"drugs",
"habits",
"cigarretes",
"smoking",
"tauri",
"angular",
"rust"
],
"icon": "./src-tauri/icons/128x128.png",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"config": "ts-node src/environments/config-env.ts",
"tauri": "tauri",
"i18n:extract": "transloco-keys-manager extract",
"i18n:find": "transloco-keys-manager find",
"bump-version": "node scripts/version-bumper.js",
"prepare": "husky"
},
"private": true,
"dependencies": {
"@angular/animations": "^20.0.6",
"@angular/cdk": "^20.0.0",
"@angular/common": "^20.0.0",
"@angular/compiler": "^20.0.0",
"@angular/core": "^20.0.0",
"@angular/forms": "^20.0.0",
"@angular/material": "^20.1.0",
"@angular/material-luxon-adapter": "^20.1.4",
"@angular/platform-browser": "^20.0.0",
"@angular/platform-browser-dynamic": "^20.0.0",
"@angular/router": "^20.1.0",
"@jsverse/transloco": "^7.6.1",
"@primeng/themes": "20.0.1",
"@tailwindcss/postcss": "^4.1.11",
"@tauri-apps/api": "^2.5.0",
"@tauri-apps/plugin-dialog": "^2.3.0",
"@tauri-apps/plugin-fs": "^2.4.0",
"@tauri-apps/plugin-global-shortcut": "^2.3.0",
"@tauri-apps/plugin-http": "^2.4.4",
"@types/crypto-js": "^4.2.2",
"chart.js": "^4.4.9",
"chartjs-plugin-datalabels": "^2.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"dexie": "^4.0.11",
"dexie-observable": "4.0.1-beta.13",
"locale-currency": "^0.0.4",
"luxon": "^3.7.1",
"ngx-cookie-service": "^20.0.0",
"ngx-joyride": "^2.5.0",
"primeicons": "^7.0.0",
"primeng": "20.0.1",
"rxjs": "^7.8.2",
"tailwind-merge": "^3.3.0",
"tailwindcss-animate": "^1.0.7",
"tslib": "^2.8.1",
"underscore": "^1.13.7"
},
"devDependencies": {
"@angular-devkit/build-angular": "^20.1.0",
"@angular/cli": "^20.1.4",
"@angular/compiler-cli": "^20.0.0",
"@eslint/js": "^9.30.0",
"@jsverse/transloco-keys-manager": "7.0.2",
"@tauri-apps/cli": "^2.5.0",
"@types/crypto-js": "^4.2.2",
"@types/dexie": "^1.3.35",
"@types/jasmine": "~5.1.8",
"@types/luxon": "^3.6.2",
"@types/underscore": "^1.13.0",
"@typescript-eslint/parser": "8.40.0",
"angular-eslint": "^20.1.1",
"autoprefixer": "^10.4.21",
"colors": "^1.4.0",
"dotenv": "^17.0.0",
"eslint": "^9.32.0",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"jasmine-core": "5.9.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"postcss": "^8.5.4",
"shelljs": "^0.10.0",
"tailwindcss": "^4.1.8",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.0",
"zone.js": "^0.15.1"
},
"overrides": {
"primeng": {
"@angular/animations": "^20.0.0",
"@angular/cdk": "^20.0.0",
"@angular/common": "^20.0.0",
"@angular/core": "^20.0.0",
"@angular/forms": "^20.0.0",
"@angular/platform-browser": "^20.0.0",
"@angular/router": "^20.0.0"
},
"license-webpack-plugin": {
"webpack-sources": "^3.2.3"
}
}
}