-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.92 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.92 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
{
"name": "angular-electron-vite",
"version": "1.0.0",
"type": "module",
"description": "An Electron application with Angular and TypeScript",
"main": "./out/main/index.js",
"author": "WebEXP0528",
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --config eslint.config.js --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.app.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev -w",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "npm run build && electron-builder --mac",
"build:linux": "npm run build && electron-builder --linux"
},
"dependencies": {
"@angular/animations": "^20.1.3",
"@angular/cdk": "^20.1.3",
"@angular/common": "^20.1.3",
"@angular/compiler": "^20.1.3",
"@angular/core": "^20.1.3",
"@angular/forms": "^20.1.3",
"@angular/material": "^20.1.3",
"@angular/platform-browser": "^20.1.3",
"@angular/platform-browser-dynamic": "^20.1.3",
"@angular/platform-server": "^20.1.3",
"@angular/router": "^20.1.3",
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@ngx-translate/core": "^16.0.4",
"@ngx-translate/http-loader": "^16.0.1",
"axios": "^1.11.0",
"electron-context-menu": "^4.1.0",
"electron-updater": "^6.6.2",
"rxjs": "~7.8.2",
"sailpoint-api-client": "^1.6.6",
"sailpoint-components": "workspace:*",
"tslib": "^2.8.1",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "^1.19.1",
"@analogjs/vitest-angular": "^1.19.1",
"@angular-devkit/build-angular": "^20.1.3",
"@angular-eslint/builder": "20.1.1",
"@angular-eslint/eslint-plugin": "20.1.1",
"@angular-eslint/eslint-plugin-template": "20.1.1",
"@angular-eslint/schematics": "20.1.1",
"@angular-eslint/template-parser": "20.1.1",
"@angular/cli": "^20.1.3",
"@angular/compiler-cli": "^20.1.3",
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.1.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@tailwindcss/postcss": "^4.1.11",
"@types/d3": "^7.4.3",
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.1.0",
"autoprefixer": "^10.4.21",
"electron": "^37.2.4",
"electron-builder": "^26.0.12",
"electron-debug": "^4.1.0",
"electron-vite": "^4.0.0",
"eslint": "^9.32.0",
"lodash-es": "^4.17.21",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.11",
"typescript": "^5.8.3",
"vite": "^7.0.6",
"vite-plugin-checker": "^0.10.1",
"vitest": "^3.2.4"
}
}