This repository has been archived by the owner on Dec 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 3.6 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": "meeting-display",
"version": "2.0.4",
"description": "Basic application for displaying books & magazines in epub format from the jw website in congregation meetings.",
"author": {
"name": "Luke Tinnion",
"email": "luke.tinnion@icloud.com"
},
"keywords": [],
"main": "main.js",
"private": true,
"scripts": {
"ng": "ng",
"ng:serve": "ng serve",
"ng:serve:web": "ng serve -c web -o",
"build:dev": "npm run build -- -c dev",
"build:prod": "npm run build -- -c production",
"start": "npm-run-all -p electron:serve ng:serve",
"electron:serve-tsc": "tsc -p tsconfig-serve.json",
"build": "npm run electron:serve-tsc && ng build --base-href ./",
"deploy:app": "npm run build:prod && electron-builder build --win --config electron-builder.yml --publish always",
"electron:serve": "npm run electron:serve-tsc && npx electron . --serve",
"electron:local": "npm run build:prod && npx electron .",
"electron:build": "npm run build:prod && electron-builder build --config electron-builder.yml",
"e2e": "npm run build:prod && cross-env TS_NODE_PROJECT='e2e/tsconfig.e2e.json' mocha --timeout 300000 --require ts-node/register e2e/**/*.e2e.ts",
"version": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"test": "ng test --watch=false",
"test:watch": "ng test",
"lint": "ng lint"
},
"devDependencies": {
"@angular-builders/custom-webpack": "9.1.0",
"@angular-devkit/build-angular": "0.901.9",
"@angular-eslint/builder": "0.0.1-alpha.32",
"@angular-eslint/eslint-plugin": "0.0.1-alpha.32",
"@angular-eslint/eslint-plugin-template": "0.0.1-alpha.32",
"@angular-eslint/template-parser": "0.0.1-alpha.32",
"@angular/cli": "9.1.11",
"@angular/common": "9.1.11",
"@angular/compiler": "9.1.11",
"@angular/compiler-cli": "9.1.11",
"@angular/core": "9.1.11",
"@angular/forms": "9.1.11",
"@angular/language-service": "9.1.11",
"@angular/platform-browser": "9.1.11",
"@angular/platform-browser-dynamic": "9.1.11",
"@angular/router": "9.1.11",
"@ngx-translate/core": "12.1.2",
"@ngx-translate/http-loader": "5.0.0",
"@types/jasmine": "3.5.10",
"@types/jasminewd2": "2.0.8",
"@types/lodash": "4.14.170",
"@types/mocha": "7.0.2",
"@types/node": "12.11.1",
"@typescript-eslint/eslint-plugin": "3.3.0",
"@typescript-eslint/eslint-plugin-tslint": "3.3.0",
"@typescript-eslint/parser": "3.3.0",
"chai": "4.2.0",
"conventional-changelog-cli": "2.0.34",
"core-js": "3.6.5",
"cross-env": "7.0.2",
"electron": "9.4.0",
"electron-builder": "22.7.0",
"electron-reload": "1.5.0",
"eslint": "7.3.0",
"eslint-plugin-import": "2.21.2",
"jasmine-core": "3.5.0",
"jasmine-spec-reporter": "5.0.2",
"karma": "5.1.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-electron": "6.3.0",
"karma-jasmine": "3.3.1",
"karma-jasmine-html-reporter": "1.5.4",
"mocha": "8.0.1",
"npm-run-all": "4.1.5",
"rxjs": "6.5.5",
"spectron": "11.0.0",
"ts-node": "8.10.2",
"tslib": "2.0.0",
"typescript": "3.8.3",
"wait-on": "5.0.1",
"webdriver-manager": "12.1.7",
"zone.js": "0.10.3"
},
"engines": {
"node": ">=10.13.0"
},
"dependencies": {
"@gxl/epub-parser": "2.0.2",
"@types/nedb": "1.8.9",
"electron-debug": "3.1.0",
"electron-updater": "4.3.1",
"extract-zip": "2.0.1",
"glob": "7.1.6",
"nedb": "1.8.0",
"ng2-dragula": "2.1.1",
"ngx-electron": "2.2.0",
"ngx-fomantic-ui": "0.11.7",
"node-html-parser": "1.2.20",
"nucleus-nodejs": "3.0.6"
}
}