-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
102 lines (102 loc) · 3.91 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
{
"name": "Knowte",
"version": "3.0.1",
"versionSuffix": "",
"copyright": "Copyright Digimezzo Ⓒ 2013 - 2023",
"description": "A note taking application that allows you to quickly and easily organize and find your notes",
"homepage": "https://github.com/digimezzo/knowte",
"author": {
"name": "Digimezzo",
"email": "[email protected]"
},
"keywords": [
"angular",
"electron",
"typescript",
"sass"
],
"main": "main.js",
"private": true,
"scripts": {
"postinstall": "npm run postinstall:electron && npx electron-builder install-app-deps && ngcc",
"postinstall:web": "node postinstall-web",
"postinstall:electron": "node postinstall",
"ng": "ng",
"start": "npm run postinstall:electron && npm-run-all -p ng:serve electron:serve",
"build": "npm run postinstall:electron && npm run electron:serve-tsc && ng build",
"build:dev": "npm run build -- -c dev",
"build:prod": "npm run build -- -c production",
"ng:serve": "ng serve",
"ng:serve:web": "npm run postinstall:web && ng serve -o",
"electron:serve-tsc": "tsc -p tsconfig-serve.json",
"electron:serve": "wait-on http-get://localhost:4200/ && npm run electron:serve-tsc && electron . --serve",
"electron:local": "npm run build:prod && electron .",
"electron:linux": "npm run build:prod && npx electron-builder build --linux --config electron-builder.config.js",
"electron:windows": "npm run build:prod && npx electron-builder build --windows --config electron-builder.config.js",
"electron:mac": "npm run build:prod && npx electron-builder build --mac --config electron-builder.config.js",
"test": "npx jest --verbose"
},
"dependencies": {
"@angular/animations": "^12.2.17",
"@angular/cdk": "12.2.13",
"@angular/material": "12.2.13",
"@electron/remote": "^2.0.9",
"@fortawesome/fontawesome-free": "^6.3.0",
"angular-split": "^5.0.0",
"archiver": "^5.3.1",
"crypto-js": "^4.1.1",
"electron-localshortcut": "^3.2.1",
"electron-log": "4.4.8",
"electron-store": "8.1.0",
"electron-window-state": "^5.0.3",
"extract-zip": "^2.0.1",
"fs-extra": "10.1.0",
"line-awesome": "^1.3.0",
"lokijs": "^1.5.12",
"material-design-icons": "^3.0.1",
"moment": "^2.27.0",
"nanoid": "^4.0.0",
"ngx-markdown": "^12.1.0",
"quill": "^1.3.7",
"quill-blot-formatter": "^1.0.5",
"sanitize-filename": "1.6.3",
"tinycolor2": "^1.4.2",
"tslib": "^2.4.1"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^12.0.0",
"@angular-devkit/build-angular": "~12.2.18",
"@angular/cli": "12.2.18",
"@angular/common": "12.2.17",
"@angular/compiler": "12.2.17",
"@angular/compiler-cli": "12.2.17",
"@angular/core": "12.2.17",
"@angular/forms": "12.2.17",
"@angular/language-service": "12.2.17",
"@angular/platform-browser": "12.2.17",
"@angular/platform-browser-dynamic": "12.2.17",
"@angular/router": "12.2.17",
"@ngx-translate/core": "11.0.1",
"@ngx-translate/http-loader": "4.0.0",
"@types/jest": "^26.0.22",
"@types/marked": "^4.0.8",
"@types/node": "^14.14.33",
"codelyzer": "^6.0.0",
"core-js": "2.6.1",
"electron": "17.3.1",
"electron-builder": "22.9.1",
"electron-reload": "1.5.0",
"jest": "^28.1.3",
"jest-preset-angular": "12.2.2",
"npm-run-all": "4.1.5",
"npx": "10.2.0",
"rxjs": "6.6.3",
"ts-node": "10.9.1",
"tslint": "~6.1.0",
"typemoq": "^2.1.0",
"typescript": "4.3.5",
"wait-on": "3.2.0",
"webdriver-manager": "12.1.1",
"zone.js": "~0.11.4"
}
}