forked from bjdash/apic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 4.45 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
127
{
"name": "apic",
"version": "3.0.6",
"scripts": {
"ng": "ng",
"start": "ng serve --port=5000",
"start-hmr": "ng serve --port=5000 --hmr",
"start1": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"bump": "gulp bump",
"web:local": "ng build",
"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": "^12.2.4",
"@angular/cdk": "^12.2.4",
"@angular/common": "^12.2.4",
"@angular/compiler": "^12.2.4",
"@angular/core": "^12.2.4",
"@angular/forms": "^12.2.4",
"@angular/material": "^12.2.4",
"@angular/platform-browser": "^12.2.4",
"@angular/platform-browser-dynamic": "^12.2.4",
"@angular/router": "^12.2.4",
"@ngxs/store": "^3.7.2",
"@stomp/rx-stomp": "^1.1.4",
"ajv": "^7.2.4",
"crypto-js": "^4.1.1",
"expression-eval": "^4.0.0",
"idb": "^5.0.8",
"js-yaml": "^4.1.0",
"marked": "^3.0.2",
"ng-recaptcha": "^8.0.1",
"ng2-ace-editor": "^0.3.9",
"rxjs": "~6.5.4",
"socket.io-client": "^2.4.0",
"sockjs-client": "^1.5.2",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^12.2.4",
"@angular/cli": "^12.2.4",
"@angular/compiler-cli": "^12.2.4",
"@ngxs/devtools-plugin": "^3.7.2",
"@types/jasmine": "^3.6.11",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^12.20.24",
"codelyzer": "^6.0.2",
"electron": "^13.3.0",
"electron-builder": "^22.11.7",
"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.5",
"gulp-zip": "^5.1.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.7.0",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "^6.1.3",
"typescript": "^4.3.5",
"yargs": "^17.1.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"
}
}
}