-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 4.2 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
{
"name": "tribune-doc-viewer",
"version": "0.0.0",
"description": "Document viewer for interactive tribunes",
"homepage": "https://github.com/Tribunes/tribune-doc-viewer",
"main": "main.js",
"private": true,
"files": [
"*.js",
"build",
"node_modules"
],
"scripts": {
"postinstall": "electron-builder install-app-deps",
"ng": "ng",
"start": "npm-run-all -p electron:serve ng:serve",
"build": "npm run electron:serve-tsc && ng build --base-href ./",
"build:dev": "npm run build -- -c dev",
"build:prod": "npm run build -- -c production",
"build:release": "npm run build:prod && electron-builder --win",
"ng:serve": "ng serve -c web -o",
"electron:serve-tsc": "tsc -p tsconfig.serve.json",
"electron:serve": "wait-on tcp:4200 && npm run electron:serve-tsc && npx electron . --serve",
"electron:local": "npm run build:prod && npx electron .",
"electron:local:prod": "npm run electron:local",
"electron:local:dev": "npm run build:dev && npx electron .",
"electron:build": "npm run build:prod && electron-builder build",
"test": "ng test --watch=false",
"test:watch": "ng test",
"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",
"lint": "npx eslint main.ts 'src/**/*.ts'",
"lint:styles": "npx stylelint 'src/**/*.scss'",
"lint:fix": "npx eslint 'src/**/*.ts' --fix; npx stylelint 'src/**/*.scss' --fix"
},
"devDependencies": {
"@angular-builders/custom-webpack": "12.1.0",
"@angular-devkit/build-angular": "12.1.1",
"@angular-eslint/builder": "0.8.0-beta.3",
"@angular-eslint/eslint-plugin": "0.8.0-beta.3",
"@angular-eslint/eslint-plugin-template": "0.8.0-beta.3",
"@angular-eslint/schematics": "12.3.0",
"@angular-eslint/template-parser": "0.8.0-beta.3",
"@angular/cli": "12.1.1",
"@angular/common": "12.1.1",
"@angular/compiler": "12.1.1",
"@angular/compiler-cli": "12.1.1",
"@angular/core": "12.1.1",
"@angular/forms": "12.1.1",
"@angular/language-service": "12.1.1",
"@angular/platform-browser": "12.1.1",
"@angular/platform-browser-dynamic": "12.1.1",
"@angular/router": "12.1.1",
"@types/dom-mediacapture-record": "1.0.7",
"@types/jasmine": "3.6.2",
"@types/jasminewd2": "2.0.8",
"@types/mocha": "8.0.4",
"@types/node": "12.12.6",
"@types/pdfjs-dist": "2.7.4",
"@types/video.js": "7.3.26",
"@typescript-eslint/eslint-plugin": "4.7.0",
"@typescript-eslint/eslint-plugin-tslint": "4.7.0",
"@typescript-eslint/parser": "4.7.0",
"chai": "4.2.0",
"conventional-changelog-cli": "2.1.1",
"core-js": "3.6.5",
"cross-env": "7.0.2",
"electron": "11.3.0",
"electron-builder": "22.9.1",
"electron-reload": "1.5.0",
"eslint": "7.13.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.8",
"eslint-plugin-prefer-arrow": "1.2.2",
"jasmine-core": "3.6.0",
"jasmine-spec-reporter": "6.0.0",
"karma": "6.3.4",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-electron": "6.3.1",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.5.4",
"mocha": "8.2.1",
"npm-run-all": "4.1.5",
"rxjs": "6.6.3",
"spectron": "13.0.0",
"stylelint": "13.13.1",
"stylelint-config-idiomatic-order": "8.1.0",
"stylelint-config-sass-guidelines": "8.0.0",
"stylelint-order": "4.1.0",
"stylelint-scss": "3.20.1",
"ts-node": "9.1.0",
"tslib": "2.0.3",
"typescript": "4.3.5",
"wait-on": "5.2.1",
"webdriver-manager": "12.1.7",
"zone.js": "0.11.4"
},
"engines": {
"node": ">=10.13.0"
},
"browserslist": [
"chrome 83"
],
"dependencies": {
"@angular/animations": "12.1.1",
"crypto-js": "4.0.0",
"css-element-queries": "1.2.3",
"dotenv": "8.2.0",
"drivelist": "9.2.4",
"file-loader": "6.0.0",
"get-file-info": "1.0.3",
"immutable": "4.0.0-rc.14",
"jsonfile": "4.0.0",
"pdfjs-dist": "2.5.207",
"read-ini-file": "3.0.1",
"systeminformation": "5.6.12",
"videojs-record": "4.2.0",
"write-ini-file": "3.0.2"
}
}