-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (129 loc) · 4.05 KB
/
package.json
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
130
{
"name": "fontastic",
"version": "0.2.0",
"description": "A gorgeous multi-platform font management application.",
"homepage": "https://github.com/tomshaw/fontastic",
"private": false,
"author": {
"name": "Tom Shaw",
"email": "[email protected]"
},
"keywords": [
"angular",
"angular 16",
"electron",
"electron 25",
"nodejs",
"typescript",
"playwright",
"eslint",
"sass",
"windows",
"mac",
"linux"
],
"main": "app/main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"ng": "ng",
"start": "npm-run-all -p electron:serve ng:serve",
"ng:serve": "ng serve -c web -o",
"build": "npm run electron:serve-tsc && ng build --base-href ./",
"build:dev": "npm run build -- -c dev",
"build:prod": "npm run build -- -c production",
"web:build": "npm run build -- -c web-production",
"electron": "electron",
"electron:serve-tsc": "tsc -p tsconfig.serve.json",
"electron:serve": "wait-on tcp:4200 && npm run electron:serve-tsc && electron . --serve",
"electron:local": "npm run build:prod && electron .",
"electron:build": "npm run build:prod && electron-builder build --publish=never",
"test": "ng test --watch=false",
"test:watch": "ng test",
"e2e": "npm run build:prod && playwright test -c e2e/playwright.config.ts e2e/",
"e2e:show-trace": "playwright show-trace e2e/tracing/trace.zip",
"version": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"lint": "ng lint"
},
"dependencies": {
"@angular/common": "16.1.3",
"@angular/compiler": "16.1.3",
"@angular/core": "16.1.3",
"@angular/forms": "16.1.3",
"@angular/language-service": "16.1.3",
"@angular/platform-browser": "16.1.3",
"@angular/platform-browser-dynamic": "16.1.3",
"@angular/router": "16.1.3",
"@tailwindcss/forms": "0.5.3",
"@tailwindcss/typography": "0.5.8",
"chart.js": "4.1.1",
"dot-prop": "7.2.0",
"electron-log": "4.4.8",
"electron-store": "8.1.0",
"gsap": "3.11.4",
"material-icons": "1.13.2",
"mime": "3.0.0",
"mysql": "2.18.1",
"node-machine-id": "1.1.12",
"opentype.js": "1.3.4",
"postcss": "8.4.20",
"pretty-bytes": "6.0.0",
"reflect-metadata": "0.1.13",
"rxjs": "7.8.1",
"sqlite3": "5.1.4",
"sudo-prompt": "9.2.1",
"ts-md5": "1.3.1",
"tslib": "^2.5.0",
"typeorm": "0.3.11",
"zone.js": "~0.13.1"
},
"devDependencies": {
"@angular-builders/custom-webpack": "16.0.0",
"@angular-devkit/build-angular": "16.1.3",
"@angular-eslint/builder": "16.0.3",
"@angular-eslint/eslint-plugin": "16.0.3",
"@angular-eslint/eslint-plugin-template": "16.0.3",
"@angular-eslint/schematics": "16.0.3",
"@angular-eslint/template-parser": "16.0.3",
"@angular/cli": "16.1.3",
"@angular/compiler-cli": "16.1.3",
"@ngx-translate/core": "15.0.0",
"@ngx-translate/http-loader": "8.0.0",
"@playwright/test": "1.35.1",
"@types/jasmine": "4.3.1",
"@types/jasminewd2": "2.0.10",
"@types/node": "18.16.9",
"@types/opentype.js": "1.3.4",
"@typescript-eslint/eslint-plugin": "5.60.1",
"@typescript-eslint/parser": "5.60.1",
"conventional-changelog-cli": "3.0.0",
"electron": "25.2.0",
"electron-builder": "24.4.0",
"electron-debug": "3.2.0",
"electron-reloader": "1.2.3",
"eslint": "8.43.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsdoc": "46.4.2",
"eslint-plugin-prefer-arrow": "1.2.3",
"jasmine-core": "4.6.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.2",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-electron": "7.3.0",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"node-polyfill-webpack-plugin": "2.0.1",
"npm-run-all": "4.1.5",
"playwright": "1.35.1",
"tailwindcss": "3.2.4",
"ts-node": "10.9.1",
"typescript": "~4.9.5",
"wait-on": "7.0.1",
"webdriver-manager": "12.1.9"
},
"engines": {
"node": ">= 16.14.0 || >= 18.10.0"
},
"browserslist": [
"chrome 114"
]
}