forked from wako-app/wako-select-kodi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.63 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
{
"name": "wako-kodi-select",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:wako-like": "npm run clean && npm run build:plugin:dev && concurrently \" npm run watch:plugin \" \" ng run wako-like:serve\" ",
"serve:wako-like": "npm run clean && npm run build:plugin:dev && concurrently \" npm run watch:plugin \" \" ng run wako-like:serve --host=192.168.1.10 \" ",
"build": "npm run clean && npm run build:plugin",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"clean": "rm -rf ./dist",
"watch:plugin": "gulp watch",
"build:plugin:dev": "ng build --project plugin --prod --outputPath=src/assets/plugins && npm run copy:resources:dev",
"copy:resources:dev": "cp projects/plugin/src/manifest.json ./src/assets/plugins && cp -r projects/plugin/src/i18n ./src/assets/plugins",
"copy:resources": "cp projects/plugin/src/manifest.json ./dist && cp -r projects/plugin/src/i18n ./dist",
"build:plugin": "ng build --project plugin --prod && npm run copy:resources"
},
"private": true,
"dependencies": {
"@angular/common": "^9.1.1",
"@angular/core": "^9.1.1",
"@angular/forms": "^9.1.1",
"@angular/platform-browser": "^9.1.1",
"@angular/platform-browser-dynamic": "^9.1.1",
"@angular/router": "^9.1.1",
"@ionic/angular": "^5.0.7",
"@ionic/storage": "^2.2.0",
"@ngx-translate/core": "^12.1.2",
"@wako-app/mobile-sdk": "^3.0.0",
"concurrently": "^4.1.1",
"rxjs": "^6.5.5",
"systemjs": "^6.3.0",
"tslib": "^1.11.1",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/architect": "^0.901.1",
"@angular-devkit/build-angular": "~0.901.1",
"@angular-devkit/core": "^9.1.1",
"@angular-devkit/schematics": "^9.1.1",
"@angular/cli": "~9.1.1",
"@angular/compiler": "~9.1.1",
"@angular/compiler-cli": "~9.1.1",
"@angular/language-service": "~9.1.1",
"@ionic/angular-toolkit": "^2.2.0",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"codelyzer": "^5.2.2",
"gulp": "^4.0.2",
"husky": "^4.2.5",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"protractor": "~5.4.0",
"ts-node": "~8.3.0",
"tslint": "~5.17.0",
"typescript": "~3.8.3"
},
"description": "An Ionic project",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}