This repository has been archived by the owner on Feb 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
85 lines (85 loc) · 2.71 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
{
"name": "mirageold",
"version": "1.3.0",
"scripts": {
"ng": "ng",
"script:get": "touch game.script.js && rm game.script.js && wget -O game.script.js https://proxyconnection.touch.dofus.com/build/script.js",
"script:get:beautified": "npm run script:get && npx js-beautify -r game.script.js",
"serve:electron": "ng build -c electron-dev",
"serve:cordova": "ng build -c cordova-dev",
"start:electron": "electron electron/index.js",
"start:cordova": "cordova run android",
"start": "npm run start:electron",
"release:patch": "scripts/release.sh patch",
"release:minor": "scripts/release.sh minor",
"release:major": "scripts/release.sh major",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "9.0.0",
"@angular/cdk": "9.0.0",
"@angular/common": "9.0.0",
"@angular/compiler": "9.0.0",
"@angular/core": "9.0.0",
"@angular/fire": "^5.4.2",
"@angular/flex-layout": "^9.0.0-beta.29",
"@angular/forms": "9.0.0",
"@angular/material": "^9.0.0",
"@angular/platform-browser": "9.0.0",
"@angular/platform-browser-dynamic": "9.0.0",
"@angular/router": "9.0.0",
"@datorama/akita": "^4.19.2",
"cordova-android": "^8.1.0",
"cordova-plugin-browsersync": "^1.1.0",
"cordova-plugin-browsersync-gen2": "^1.1.7",
"cordova-plugin-file": "^6.0.2",
"cordova-plugin-indexeddb": "^0.1.2",
"cordova-plugin-screen-orientation": "^3.0.2",
"cordova-sqlite-storage": "^4.0.0",
"electron": "^8.2.3",
"es6-promise-plugin": "^4.2.2",
"firebase": "^7.8.1",
"rxjs": "6.5.4",
"tslib": "^1.10.0",
"zone.js": "0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.900.1",
"@angular/cli": "9.0.1",
"@angular/compiler-cli": "9.0.0",
"@angular/language-service": "9.0.0",
"@types/cordova": "0.0.34",
"@types/node": "^13.13.2",
"codelyzer": "^5.1.2",
"cordova-plugin-whitelist": "^1.3.4",
"electron-packager": "^14.2.1",
"jasmine-core": "3.5.0",
"jasmine-spec-reporter": "4.2.1",
"js-beautify": "^1.11.0",
"karma": "4.4.1",
"karma-chrome-launcher": "3.1.0",
"karma-coverage-istanbul-reporter": "2.1.1",
"karma-jasmine": "3.1.0",
"karma-jasmine-html-reporter": "^1.5.2",
"protractor": "5.4.3",
"ts-node": "8.6.2",
"tslint": "6.0.0",
"typescript": "3.7.5"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-browsersync-gen2": {},
"cordova-plugin-screen-orientation": {},
"cordova-plugin-file": {},
"cordova-sqlite-storage": {},
"cordova-plugin-indexedDB": {}
},
"platforms": [
"android"
]
}
}