forked from s-s/dnscloak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 3.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
{
"name": "org.techcultivation.dnscloak",
"displayName": "DNSCryptApp",
"version": "2.2.1",
"description": "Secure DNS client for iOS.Supports DNSCrypt v2 and DNS-over-HTTPS protocols.",
"repository": "s-s/dnscloak",
"main": "app.js",
"scripts": {
"bundle:dev": "webpack --config ./build/webpack.config.js --mode development",
"bundle:prod": "webpack --config ./build/webpack.config.js --mode production",
"prepare:dev": "cordova prepare ios",
"prepare:prod": "cordova prepare ios --release",
"framework": "./build/build-ios-framework.sh",
"framework:force": "./build/build-ios-framework.sh --force",
"build:dev": "npm run bundle:dev && npm run prepare:dev && npm run framework",
"build:prod": "npm run bundle:prod && npm run prepare:prod && npm run framework",
"build": "npm run build:dev"
},
"author": "Sergey Smirnov",
"license": "MPL-2.0",
"dependencies": {
"codemirror": "^5.45.0",
"cordova-ios": "^5.0.0",
"cordova-plugin-app-preferences": "git+https://github.com/s-s/me.apla.cordova.app-preferences.git#cordova-9",
"cordova-plugin-apprate": "git+https://github.com/pushandplay/cordova-plugin-apprate.git",
"cordova-plugin-device": "^2.0.2",
"cordova-plugin-dialogs": "^2.0.1",
"cordova-plugin-dnstool": "git+https://github.com/s-s/cordova-plugin-dnstool.git",
"cordova-plugin-file": "^6.0.1",
"cordova-plugin-filepicker": "^1.1.5",
"cordova-plugin-inappbrowser": "git+https://github.com/apache/cordova-plugin-inappbrowser.git",
"cordova-plugin-ionic-keyboard": "^2.1.3",
"cordova-plugin-ionic-webview": "git+https://github.com/s-s/cordova-plugin-ionic-webview.git#2.x-lite",
"cordova-plugin-nativestorage": "^2.3.2",
"cordova-plugin-pinlock": "git+https://github.com/s-s/cordova-plugin-pinlock.git",
"cordova-plugin-splashscreen": "^5.0.2",
"cordova-plugin-statusbar": "^2.4.2",
"cordova-plugin-whitelist": "^1.3.3",
"cordova-plugin-x-socialsharing": "^5.4.4",
"es6-promise-plugin": "^4.2.2",
"framework7": "^3.6.7",
"ionicons": "^2.0.1",
"lodash": "^4.17.15",
"wolfy87-eventemitter": "^5.2.6"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-ionic-keyboard": {},
"cordova-plugin-filepicker": {},
"cordova-plugin-file": {},
"cordova-plugin-inappbrowser": {},
"cordova-plugin-apprate": {},
"cordova-plugin-ionic-webview": {},
"cordova-plugin-device": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-x-socialsharing": {},
"cordova-plugin-app-preferences": {},
"cordova-plugin-dnstool": {},
"cordova-plugin-pinlock": {}
},
"platforms": [
"ios"
]
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^2.0.1",
"cordova": "^9.0.0",
"cordova-lib": "^9.0.0",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.2.3",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
}
}