-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
99 lines (99 loc) · 2.98 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
{
"name": "mothertongues-UI",
"version": "3.3.0",
"author": "Aidan Pine",
"homepage": "http://www.mothertongues.org",
"private": true,
"scripts": {
"clean": "ionic-app-scripts clean",
"build": "ionic-app-scripts build",
"ionic:build": "ionic-app-scripts build",
"ionic:serve": "ionic-app-scripts serve",
"minify": "uglifyjs src/assets/js/mtd.js src/assets/js/levenshtein.js src/assets/js/editDistance.js src/assets/js/utility.js src/assets/js/deadSearch.js -o src/assets/js/mtd-ui.min.js"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@angular/common": "5.0.3",
"@angular/compiler": "5.0.3",
"@angular/compiler-cli": "5.0.3",
"@angular/core": "5.0.3",
"@angular/forms": "5.0.3",
"@angular/http": "5.0.3",
"@angular/platform-browser": "5.0.3",
"@angular/platform-browser-dynamic": "5.0.3",
"@commitlint/config-conventional": "^8.3.4",
"@ionic-native/android-permissions": "^4.5.3",
"@ionic-native/clipboard": "^4.20.0",
"@ionic-native/core": "4.4.0",
"@ionic-native/file": "^4.5.3",
"@ionic-native/file-transfer": "^4.5.3",
"@ionic-native/media": "^4.20.0",
"@ionic-native/splash-screen": "4.4.0",
"@ionic-native/status-bar": "4.4.0",
"@ionic/pro": "^1.0.19",
"@ionic/storage": "2.1.3",
"commitlint": "^8.3.5",
"cordova-android": "^8.1.0",
"cordova-browser": "^5.0.3",
"cordova-clipboard": "^1.3.0",
"cordova-ios": "^4.5.5",
"cordova-plugin-device": "^2.0.3",
"cordova-plugin-file": "^6.0.2",
"cordova-plugin-file-transfer": "^1.7.1",
"cordova-plugin-ionic-keyboard": "^2.2.0",
"cordova-plugin-ionic-webview": "^4.1.0",
"cordova-plugin-media": "5.0.3",
"cordova-plugin-splashscreen": "^5.0.3",
"cordova-plugin-whitelist": "^1.3.4",
"husky": "^3.0.9",
"ionic": "^5.4.1",
"ionic-angular": "3.9.2",
"ionicons": "3.0.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"rxjs": "5.5.2",
"sw-toolbox": "3.6.0",
"transliteration": "^2.1.11",
"web": "0.0.2",
"zone.js": "0.8.18"
},
"devDependencies": {
"@angular/cli": "^1.7.4",
"@ionic/app-scripts": "^3.1.8",
"typescript": "2.4.2",
"uglify-js": "^3.4.9"
},
"description": "A Mother Tongues Dictionary app",
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-device": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-ionic-webview": {
"ANDROID_SUPPORT_ANNOTATIONS_VERSION": "27.+"
},
"cordova-plugin-ionic-keyboard": {},
"cordova-plugin-file": {},
"cordova-plugin-file-transfer": {},
"cordova-plugin-media": {
"KEEP_AVAUDIOSESSION_ALWAYS_ACTIVE": "NO"
},
"cordova-clipboard": {}
},
"platforms": [
"browser",
"android",
"ios"
]
}
}