This repository has been archived by the owner on Sep 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
144 lines (144 loc) · 5.31 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "character-manager",
"version": "1.0.0",
"private": true,
"main": "electron.main.js",
"scripts": {
"ng": "ng",
"build": "npm run env -s && ng build --prod",
"start": "npm run env -s && ng serve --proxy-config proxy.conf.js",
"serve:sw": "npm run build -s && npx http-server ./www -p 4200",
"lint": "ng lint && stylelint \"src/**/*.scss\" --syntax scss && htmlhint \"src\" --config .htmlhintrc",
"test": "npm run env -s && ng test",
"test:ci": "npm run env -s && npm run lint -s && ng test --configuration=ci",
"e2e": "npm run env -s && ng e2e",
"translations:extract": "ngx-translate-extract --input ./src --output ./src/translations/template.json --format=json --clean --sort --marker extract",
"docs": "hads ./docs -o",
"env": "ngx-scripts env npm_package_version",
"prettier": "prettier --write \"./{src,e2e}/**/*.{ts,js,html,scss}\"",
"prettier:check": "prettier --list-different \"./{src,e2e}/**/*.{ts,js,html,scss}\"",
"postinstall": "npm run prettier -s",
"cordova:prepare": "ngx-scripts cordova prepare",
"cordova:run": "ngx-scripts cordova run",
"cordova:build": "ngx-scripts cordova build --device --release --copy dist",
"cordova:clean": "ngx-scripts clean",
"cordova": "cordova",
"electron:compile": "tsc --project tsconfig.electron.json",
"electron:run": "npm run electron:compile -s && electron .",
"electron:build": "npm run electron:compile -s && npm run env -s && ng build --prod --base-href ./dist.electron --output-path dist.electron",
"electron:package:common": "electron-packager . --overwrite --out=dist.packages --ignore=\"/(platforms|plugins|docs|www|reports|e2e|src)\"",
"electron:package:windows": "npm run electron:package:common -s -- --platform=win32 --arch=x64 --icon=./resources/win/icon.ico",
"electron:package:mac": "npm run electron:package:common -s -- --platform=darwin --icon=./resources/mac/icon.icns",
"electron:package:linux": "npm run electron:package:common -s --platform=linux",
"electron:package": "npm run electron:package:windows -s && npm run electron:package:mac -s && npm run electron:package:linux -s",
"generate": "ng generate"
},
"dependencies": {
"@angular/animations": "^8.1.0",
"@angular/cdk": "^8.0.2",
"@angular/common": "^8.1.0",
"@angular/compiler": "^8.1.0",
"@angular/core": "^8.1.0",
"@angular/flex-layout": "^8.0.0-beta.26",
"@angular/forms": "^8.1.0",
"@angular/material": "^8.0.2",
"@angular/platform-browser": "^8.1.0",
"@angular/platform-browser-dynamic": "^8.1.0",
"@angular/router": "^8.1.0",
"@angular/service-worker": "^8.1.0",
"@ionic-native/core": "^5.20.0",
"@ionic-native/keyboard": "^5.20.0",
"@ionic-native/splash-screen": "^5.20.0",
"@ionic-native/status-bar": "^5.20.0",
"@ngx-translate/core": "^11.0.1",
"cordova-android": "^8.0.0",
"cordova-custom-config": "^5.0.2",
"cordova-ios": "^5.0.0",
"cordova-plugin-device": "^2.0.2",
"cordova-plugin-ionic-keyboard": "^2.1.3",
"cordova-plugin-ionic-webview": "^4.0.1",
"cordova-plugin-splashscreen": "^5.0.2",
"cordova-plugin-statusbar": "^2.4.1",
"cordova-plugin-whitelist": "^1.3.3",
"enum-values": "^1.2.1",
"hammerjs": "^2.0.8",
"lodash": "^4.17.11",
"material-design-icons-iconfont": "^5.0.1",
"moment": "^2.24.0",
"rxjs": "^6.5.2",
"zone.js": "^0.9.1"
},
"devDependencies": {
"@angular-builders/jest": "^8.0.4",
"@angular-devkit/build-angular": "^0.803.24",
"@angular/cli": "~8.3.24",
"@angular/compiler-cli": "^8.1.0",
"@angular/language-service": "^8.1.0",
"@angularclass/hmr": "^2.1.3",
"@biesbjerg/ngx-translate-extract": "^2.3.4",
"@ngx-rocket/scripts": "^4.0.0",
"@types/jasmine": "^3.5.2",
"@types/jasminewd2": "^2.0.3",
"@types/jest": "^24.9.1",
"@types/lodash": "^4.14.112",
"@types/uuid": "^3.4.7",
"codelyzer": "^5.2.1",
"cordova": "^9.0.0",
"electron": "^5.0.2",
"electron-packager": "^13.0.1",
"electron-reload": "^1.4.0",
"hads": "^1.7.0",
"htmlhint": "^0.11.0",
"https-proxy-agent": "^2.0.0",
"husky": "^3.0.0",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"jest": "^24.7.1",
"jest-preset-angular": "^7.1.0",
"prettier": "^1.16.3",
"pretty-quick": "^1.10.0",
"protractor": "^5.4.3",
"puppeteer": "^1.17.0",
"stylelint": "13.0.0",
"stylelint-config-prettier": "^5.1.0",
"stylelint-config-recommended-scss": "~3.3.0",
"stylelint-config-standard": "~18.3.0",
"stylelint-scss": "~3.9.0",
"ts-node": "^8.3.0",
"tslint": "~5.18.0",
"tslint-angular": "^3.0.2",
"tslint-config-prettier": "^1.14.0",
"typescript": "~3.5.3"
},
"prettier": {
"singleQuote": true,
"overrides": [
{
"files": "*.scss",
"options": {
"singleQuote": false
}
}
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"cordova": {
"platforms": [
"android",
"ios"
],
"plugins": {
"cordova-custom-config": {},
"cordova-plugin-device": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-whitelist": {},
"cordova-plugin-ionic-webview": {},
"cordova-plugin-ionic-keyboard": {}
}
}
}