-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.93 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.93 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
{
"name": "my-dashboard",
"version": "0.48.0",
"description": "A fullstack web application built with AnalogJS (Angular-based meta-framework) featuring Telegram authentication, Prisma ORM for database management, and tRPC for API communication. The application is deployed on Vercel with Neon PostgreSQL database integration.",
"author": "Ilshat Khamitov <ilshat.m.khamitov@gmail.com>",
"homepage": "https://site15-my-dashboard.vercel.app",
"type": "module",
"engines": {
"node": "22.x"
},
"pkg": {
"assets": [
"node_modules/.prisma/client/*.node"
]
},
"scripts": {
"ng": "ng",
"dev": "vite",
"start": "npm run dev",
"build": "./node_modules/.bin/prisma generate && sed -i 's/process/processLocal/g' ./src/app/generated/prisma/client.ts && sed -i 's/process/processLocal/g' ./src/server/generated/prisma/client.ts && sed -i 's/node:processLocal/node:process/g' ./src/app/generated/prisma/client.ts && sed -i 's/node:processLocal/node:process/g' ./src/server/generated/prisma/client.ts && vite build",
"watch": "vite build --watch",
"test": "vitest",
"format": "prettier --write \"src/**/*.{ts,html,css,scss,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,html,css,scss,json}\"",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"prepare": "husky",
"db:up": "docker compose up -d && sleep 10 && ./node_modules/.bin/prisma migrate deploy",
"db:down": "docker compose down",
"postinstall": "patch-package"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix",
"*.{js,ts,css,scss,md}": "prettier --ignore-unknown --write"
},
"private": true,
"dependencies": {
"@analogjs/content": "^2.0.4",
"@analogjs/router": "^2.0.4",
"@analogjs/trpc": "^0.4.0",
"@angular/animations": "^20.0.0",
"@angular/common": "^20.0.0",
"@angular/compiler": "^20.0.0",
"@angular/core": "^20.0.0",
"@angular/forms": "^20.0.0",
"@angular/platform-browser": "^20.0.0",
"@angular/platform-server": "^20.0.0",
"@angular/router": "^20.0.0",
"@ngx-formly/bootstrap": "^7.0.1",
"@ngx-formly/core": "^7.0.1",
"@picocss/pico": "^2.1.1",
"@prisma/adapter-pg": "^6.18.0",
"@prisma/client": "^6.19.0",
"@supabase/supabase-js": "^2.89.0",
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2",
"@zxing/browser": "^0.1.5",
"axios": "^1.13.2",
"chart.js": "^4.5.1",
"cors": "^2.8.5",
"es-toolkit": "^1.41.0",
"isomorphic-fetch": "^3.0.0",
"lucide": "^0.555.0",
"lucide-angular": "^0.555.0",
"ngx-toastr": "^19.1.0",
"patch-package": "^8.0.1",
"pino": "^10.1.0",
"pino-pretty": "^13.1.2",
"postcss": "^8.5.3",
"qrcode": "^1.5.4",
"rxjs": "~7.8.0",
"superjson": "^2.2.5",
"tailwindcss": "^4.1.17",
"tslib": "^2.6.2",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@analogjs/platform": "^2.0.4",
"@analogjs/vite-plugin-angular": "^2.0.4",
"@analogjs/vitest-angular": "^2.0.4",
"@angular/build": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@tailwindcss/postcss": "^4.1.17",
"@tailwindcss/vite": "^4.1.18",
"@types/axios": "^0.9.36",
"@types/node": "^24.9.2",
"@types/qrcode": "^1.5.6",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"autoprefixer": "^10.4.22",
"esbuild": "^0.27.0",
"eslint": "^9.39.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^50.8.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^9.1.7",
"jsdom": "^22.0.0",
"lint-staged": "^16.2.6",
"prettier": "^3.6.2",
"prisma": "^6.19.0",
"ts-node": "^10.9.2",
"typescript": "~5.8.0",
"typescript-eslint": "^8.46.4",
"vite": "^7.0.0",
"vite-plugin-static-copy": "^3.1.4",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^4.0.0"
},
"overrides": {
"vitest": "$vitest"
}
}