-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
113 lines (113 loc) · 3.89 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
{
"name": "branchie",
"version": "1.0.0",
"description": "Interactive video player.",
"homepage": "https://github.com/oldrev/branchie",
"author": {
"name": "Li Wei",
"email": "oldrev@gmail.com"
},
"keywords": [
"angular",
"angular 13",
"electron",
"electron 16",
"nodejs",
"typescript",
"playwright",
"eslint",
"sass",
"windows",
"mac",
"linux"
],
"main": "app/main.js",
"private": true,
"scripts": {
"postinstall": "electron-builder install-app-deps",
"ng": "ng",
"start": "pnpm-run-all -p electron:serve ng:serve",
"build": "pnpm run electron:serve-tsc && ng build",
"build:dev": "pnpm run build -c dev",
"build:prod": "pnpm run build -c production",
"ng:serve": "ng serve -c web",
"electron": "electron",
"electron:serve-tsc": "tsc -p tsconfig.serve.json",
"electron:serve": "wait-on tcp:4200 && pnpm run electron:serve-tsc && electron . --serve",
"electron:local": "pnpm run build:prod && electron .",
"electron:build": "pnpm run build:prod && electron-builder build --publish=never",
"test": "ng test --watch=false",
"test:watch": "ng test",
"e2e": "pnpm 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": "14.2.0",
"@angular/compiler": "14.2.0",
"@angular/core": "14.2.0",
"@angular/forms": "14.2.0",
"@angular/language-service": "14.2.0",
"@angular/platform-browser": "14.2.0",
"@angular/platform-browser-dynamic": "14.2.0",
"@angular/router": "14.2.0",
"expression-eval": "5.0.0",
"rxjs": "7.5.6",
"stateless": "1.4.2",
"toml-js": "0.0.8",
"tslib": "2.4.0",
"uuid": "9.0.0",
"xml2js": "0.4.23",
"zone.js": "0.11.8"
},
"devDependencies": {
"@angular-builders/custom-webpack": "14.0.1",
"@angular-devkit/build-angular": "14.2.1",
"@angular-eslint/builder": "14.0.3",
"@angular-eslint/eslint-plugin": "14.0.3",
"@angular-eslint/eslint-plugin-template": "14.0.3",
"@angular-eslint/schematics": "14.0.3",
"@angular-eslint/template-parser": "14.0.3",
"@angular/cli": "14.2.1",
"@angular/compiler-cli": "14.2.0",
"@ngx-translate/core": "14.0.0",
"@ngx-translate/http-loader": "7.0.0",
"@playwright/test": "1.25.1",
"@types/jasmine": "4.3.0",
"@types/jasminewd2": "2.0.10",
"@types/node": "18.7.14",
"@types/uuid": "8.3.4",
"@types/xml2js": "0.4.11",
"@typescript-eslint/eslint-plugin": "5.36.1",
"@typescript-eslint/parser": "5.36.1",
"conventional-changelog-cli": "2.2.2",
"electron": "20.1.1",
"electron-builder": "23.3.3",
"electron-reload": "1.5.0",
"eslint": "8.23.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.3.6",
"eslint-plugin-prefer-arrow": "1.2.3",
"jasmine-core": "4.4.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.0",
"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.25.1",
"ts-node": "10.9.1",
"typescript": "4.8.2",
"wait-on": "6.0.1",
"webdriver-manager": "12.1.8"
},
"engines": {
"node": ">=14.0.0"
},
"browserslist": [
"chrome 91"
]
}