forked from digimezzo/dopamine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 4.48 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
{
"name": "Dopamine",
"version": "3.0.0",
"versionSuffix": "preview.37",
"copyright": "Copyright Digimezzo Ⓒ 2014 - 2024",
"description": "Audio player",
"homepage": "https://github.com/digimezzo/dopamine",
"author": {
"name": "Digimezzo",
"email": "[email protected]"
},
"keywords": [
"angular",
"electron",
"typescript",
"sass"
],
"main": "main.js",
"private": true,
"scripts": {
"postinstall": "npm run postinstall:electron && electron-builder install-app-deps",
"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 --remote-debugging-port=9222",
"electron:local": "npm run build:prod && electron .",
"electron:linux": "npm run build:prod && electron-builder build --linux --config electron-builder.config.js",
"electron:windows": "npm run build:prod && electron-builder build --windows --config electron-builder.config.js",
"electron:mac": "npm run build:prod && electron-builder build --mac --config electron-builder.config.js",
"version": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"rebuild-sqlite": "./node_modules/.bin/electron-rebuild -f -o better-sqlite3",
"test": "npx jest --verbose --noStackTrace",
"test-block": "npx jest --verbose -t",
"test-file": "npx jest --verbose -i",
"lint": "ng lint"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^16.0.0",
"@angular-devkit/build-angular": "^16.2.10",
"@angular-eslint/builder": "16.3.1",
"@angular-eslint/eslint-plugin": "16.3.1",
"@angular-eslint/eslint-plugin-template": "16.3.1",
"@angular-eslint/schematics": "16.3.1",
"@angular-eslint/template-parser": "16.3.1",
"@angular/cli": "16.2.10",
"@angular/common": "16.2.12",
"@angular/compiler": "16.2.12",
"@angular/compiler-cli": "16.2.12",
"@angular/core": "16.2.12",
"@angular/forms": "16.2.12",
"@angular/language-service": "16.2.12",
"@angular/platform-browser": "16.2.12",
"@angular/platform-browser-dynamic": "16.2.12",
"@angular/router": "16.2.12",
"@ngx-translate/core": "15.0.0",
"@ngx-translate/http-loader": "8.0.0",
"@types/jest": "^29.5.1",
"@types/node": "^14.14.33",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"core-js": "2.6.1",
"electron": "^26.6.10",
"electron-builder": "24.9.1",
"electron-reload": "1.5.0",
"eslint": "^8.33.0",
"jest": "29.6.1",
"jest-preset-angular": "13.1.1",
"npm-run-all": "4.1.5",
"prettier": "^3.0.3",
"rxjs": "6.6.3",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"tslint": "6.1.3",
"typemoq": "2.1.0",
"typescript": "4.9.5",
"wait-on": "7.2.0",
"zone.js": "0.13.3"
},
"dependencies": {
"@angular/animations": "16.2.12",
"@angular/cdk": "16.2.12",
"@angular/material": "16.2.12",
"@electron/remote": "2.0.10",
"@fortawesome/fontawesome-free": "^6.6.0",
"angular-split": "14.1.0",
"better-sqlite3": "11.1.2",
"cheerio": "1.0.0-rc.12",
"discord-rpc": "4.0.1",
"electron-log": "4.4.8",
"electron-store": "8.1.0",
"fast-sort": "^3.4.1",
"fast-xml-parser": "4.3.2",
"fs-extra": "11.1.1",
"jimp": "^1.6.0",
"line-awesome": "1.3.0",
"md5-typescript": "1.0.5",
"moment": "2.29.4",
"node-fetch": "2.6.11",
"node-html-parser": "6.1.11",
"node-taglib-sharp": "5.2.3",
"node-vibrant": "^3.2.1-alpha.1",
"sanitize-filename": "1.6.3",
"tinycolor2": "1.6.0",
"tslib": "2.0.0",
"uuid": "9.0.0"
}
}