-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
126 lines (126 loc) · 4.53 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
121
122
123
124
125
126
{
"name": "apic",
"version": "3.2.1",
"scripts": {
"ng": "ng",
"start": "ng serve --port=5000",
"start-hmr": "ng serve --port=5000 --hmr",
"bump": "gulp bump",
"web:local": "ng build --output-path=dist/webLocal",
"web": "ng build --configuration production --base-href=/online/ --output-path=dist/web",
"extn:local": "gulp cleanExtnLocal && ng build --configuration=extnLocal --base-href=index.html --output-path=dist/extnLocal --stats-json && gulp buildExtnLocal",
"extn:chrome": "gulp cleanExtn && ng build --configuration=extn --base-href=index.html --output-path=dist/extn && gulp buildExtnChrome",
"extn:edge": "gulp cleanExtn && ng build --configuration=extn --base-href=index.html --output-path=dist/extn && gulp buildExtnEdge",
"extn:all": "gulp cleanExtn && ng build --configuration=extn --base-href=index.html --output-path=dist/extn && gulp buildExtnEdge && gulp buildExtnChrome",
"electron:win": "gulp cleanElectron && ng build --configuration=electron --output-path=dist/win && gulp buildElectron && electron-builder build --win --x64 -p onTagOrDraft",
"electron:mac": "gulp cleanElectron && ng build --configuration=electron --output-path=dist/win && gulp buildElectron && electron-builder build --mac --x64 -p onTagOrDraft",
"electron:linux": "gulp cleanElectron && ng build --configuration=electron --output-path=dist/win && gulp buildElectron && electron-builder build --linux --x64 -p onTagOrDraft",
"electron:macNwin": "gulp cleanElectron && ng build --configuration=electron --output-path=dist/win && gulp buildElectron && electron-builder build -mw --x64 -p onTagOrDraft",
"electron:local": "gulp cleanElectron && ng build --configuration=electronLocal --output-path=dist/win && gulp buildElectron && electron-builder build --win --x64"
},
"private": true,
"dependencies": {
"@angular/animations": "^13.3.11",
"@angular/cdk": "^13.3.7",
"@angular/common": "^13.3.9",
"@angular/compiler": "^13.3.9",
"@angular/core": "^13.3.9",
"@angular/forms": "^13.3.9",
"@angular/material": "^13.3.9",
"@angular/platform-browser": "^13.3.9",
"@angular/platform-browser-dynamic": "^13.3.9",
"@angular/router": "^13.3.9",
"@ngneat/until-destroy": "^9.2.0",
"@ngxs/store": "^3.7.3",
"@stomp/rx-stomp": "^1.1.4",
"@ungap/structured-clone": "^1.0.1",
"crypto-js": "^4.1.1",
"expression-eval": "^4.0.0",
"idb": "^7.0.2",
"js-yaml": "^4.1.0",
"json-schema-faker": "^0.5.0-rcv.42",
"lodash.throttle": "^4.1.1",
"marked": "^4.0.16",
"ng-recaptcha": "^9.0.0",
"ngx-ace-wrapper": "^12.0.0",
"rxjs": "~6.5.4",
"socket.io-client": "^4.5.1",
"sockjs-client": "^1.6.0",
"tslib": "^2.4.0",
"zone.js": "^0.11.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.3.6",
"@angular/cli": "^13.3.6",
"@angular/compiler-cli": "^13.3.9",
"@ngxs/devtools-plugin": "^3.7.3",
"@types/jasmine": "^3.10.6",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^12.20.52",
"codelyzer": "^6.0.2",
"electron": "^13.6.9",
"electron-builder": "^22.14.13",
"gulp": "^4.0.2",
"gulp-bump": "^3.2.0",
"gulp-git": "^2.10.1",
"gulp-rename": "^2.0.0",
"gulp-run": "^1.7.1",
"gulp-text-simple": "^0.5.7",
"gulp-zip": "^5.1.0",
"jasmine-core": "^4.2.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.3.20",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"openapi-types": "^11.0.1",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "^6.1.3",
"typescript": "^4.6.4",
"yargs": "^17.5.1"
},
"build": {
"appId": "bj.apic.app",
"publish": [
{
"provider": "github",
"releaseType": "release"
},
{
"provider": "generic",
"url": "https://apic.app/download/"
}
],
"mac": {
"category": "public.app-category.developer-tools",
"target": [
"zip",
"dmg"
]
},
"nsis": {
"perMachine": true,
"allowElevation": true,
"deleteAppDataOnUninstall": true,
"oneClick": false
},
"win": {
"target": "nsis",
"verifyUpdateCodeSignature": false
},
"linux": {
"target": [
"AppImage",
"snap"
],
"category": "Development"
},
"directories": {
"buildResources": "platform_files/electron/resources",
"app": "dist/win/",
"output": "dist/native"
}
}
}