-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.5 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.5 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
{
"name": "electric",
"version": "0.0.0",
"author": {
"name": "Danny McGee",
"email": "dannymcgee@gmail.com",
"url": "https://dannymcgee.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/dannymcgee/electric.git"
},
"license": "./LICENSE.md",
"scripts": {
"postinstall": "run-p postinstall:*",
"postinstall:tools": "npm run build-executors",
"build-executors": "run-s build-executors:*",
"build-executors:schemas": "ts-node --project tools/tsconfig.tools.json tools/scripts/generate-schemas.ts",
"build-executors:tsc": "tsc --project tools/tsconfig.executors.json",
"nx": "nx",
"tauri": "tauri"
},
"private": true,
"dependencies": {
"@angular/animations": "19.2.3",
"@angular/cdk": "19.2.6",
"@angular/common": "19.2.3",
"@angular/compiler": "19.2.3",
"@angular/core": "19.2.3",
"@angular/forms": "19.2.3",
"@angular/platform-browser": "19.2.3",
"@angular/platform-browser-dynamic": "19.2.3",
"@angular/router": "19.2.3",
"@nestjs/common": "10.0.2",
"@nestjs/core": "10.0.2",
"@nestjs/platform-express": "10.0.2",
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-clipboard-manager": "^2.2.2",
"@tauri-apps/plugin-dialog": "^2.2.0",
"@tauri-apps/plugin-fs": "^2.2.0",
"@tauri-apps/plugin-global-shortcut": "^2.2.0",
"@tauri-apps/plugin-http": "^2.4.2",
"@tauri-apps/plugin-notification": "^2.2.2",
"@tauri-apps/plugin-os": "^2.2.1",
"@tauri-apps/plugin-process": "^2.2.0",
"@tauri-apps/plugin-shell": "^2.2.0",
"@vscode-devkit/grammar": "0.0.1",
"chroma-js": "^3.1.2",
"d3": "^7.3.0",
"highlight.js": "^11.4.0",
"prettier": "^3.5.3",
"rxjs": "7.8.2",
"tslib": "^2.0.0",
"winattr": "^3.0.0",
"zone.js": "0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "19.2.4",
"@angular-devkit/core": "19.2.4",
"@angular-devkit/schematics": "19.2.4",
"@angular/cli": "19.2.4",
"@angular/compiler-cli": "19.2.3",
"@angular/language-service": "19.2.3",
"@nestjs/schematics": "10.0.1",
"@nestjs/testing": "10.0.2",
"@ngneat/spectator": "^19.4.1",
"@nx/angular": "20.6.2",
"@nx/eslint": "20.6.2",
"@nx/eslint-plugin": "20.6.2",
"@nx/jest": "20.6.2",
"@nx/js": "20.6.2",
"@nx/nest": "20.6.2",
"@nx/node": "20.6.2",
"@nx/web": "20.6.2",
"@nx/webpack": "20.6.2",
"@nx/workspace": "20.6.2",
"@schematics/angular": "19.2.4",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "^0.5.15",
"@tauri-apps/cli": "^2.4.0",
"@types/chroma-js": "^3.1.1",
"@types/d3": "^7.1.0",
"@types/jasmine": "4.0.3",
"@types/jest": "29.5.14",
"@types/node": "^18.16.9",
"@types/winattr": "^3.0.0",
"@typescript-eslint/utils": "^7.16.0",
"angular-eslint": "^19.2.1",
"autoprefixer": "^10.4.0",
"eslint": "^9.22.0",
"eslint-config-prettier": "9.0.0",
"jasmine-core": "4.2.0",
"jasmine-spec-reporter": "7.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-environment-node": "29.7.0",
"jest-preset-angular": "~14.5.3",
"jsdom": "^26.0.0",
"karma": "6.4.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"keycode": "^2.2.1",
"ng-packagr": "19.2.0",
"npm-run-all": "^4.1.5",
"nx": "20.6.2",
"postcss": "^8.4.6",
"postcss-import": "14.1.0",
"postcss-preset-env": "7.5.0",
"postcss-url": "10.1.3",
"svg-parser": "^2.0.4",
"ts-jest": "29.1.5",
"ts-node": "10.9.1",
"typescript": "5.7.3",
"typescript-eslint": "^8.26.1"
}
}