This repository has been archived by the owner on Jan 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2.46 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
{
"scripts": {
"start": "parcel index.html --global index",
"dev": "parcel index.html --global index",
"build": "parcel build index.html search.html project.html user.html ./scripts/project.js --global index --out-dir www --public-url .",
"genDarkSplashes": "cordova-res android --skip-config --splash-source ./resources/android/splash-night.jpg --type splash --resources ./resources/android/splash && mv ./resources/android/splash/android/splash/* ./resources/android/splash/night && rmdir ./resources/android/splash/android/splash && rmdir ./resources/android/splash/android"
},
"devDependencies": {
"cordova-android": "^9.0.0",
"cordova-plugin-browsertab": "^0.2.0",
"cordova-plugin-compat": "^1.2.0",
"cordova-plugin-device": "^2.0.3",
"cordova-plugin-inappbrowser": "^4.0.0",
"cordova-plugin-screen-orientation": "^3.0.2",
"cordova-plugin-splashscreen": "^6.0.0",
"cordova-plugin-theme-detection": "^1.2.1",
"cordova-plugin-whitelist": "^1.3.4",
"cordova-res": "^0.15.2",
"cssnano": "^4.1.10",
"es6-promise-plugin": "^4.2.2",
"less": "^3.12.2",
"node-forge": ">=0.10.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-html-externals": "^0.2.0",
"parcel-plugin-static-files-copy": "^2.5.0",
"sass": "^1.26.10",
"stylelint": "^13.7.2",
"stylelint-postcss-ignore": "^0.1.0",
"vue": "^2.6.11",
"worker-loader": "^3.0.6"
},
"dependencies": {
"@vibrant/worker": "^3.2.1-alpha.1",
"cclick": "^1.0.6",
"clipboard": "^2.0.6",
"compare-func": "^2.0.0",
"contexjs": "^1.0.0",
"cordova": "^10.0.0",
"cordova-browser": "^6.0.0",
"human-readable-time": "^0.3.0",
"long-press-mobile": "^1.0.1",
"mat-ripple": "^1.0.3",
"node-forge": ">=0.10.0",
"node-vibrant": "^3.1.6",
"parcel": "^1.12.4",
"string.prototype.replaceall": "^1.0.4",
"web-long-press": "^1.0.3"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-inappbrowser": {},
"cordova-plugin-device": {},
"cordova-plugin-browsertab": {},
"cordova-plugin-theme-detection": {},
"cordova-plugin-screen-orientation": {},
"cordova-plugin-splashscreen": {}
},
"platforms": [
"browser",
"android"
]
},
"externals": {
"./cordova.js": false
},
"staticFiles": {
"staticPath": [
{
"staticPath": "asset",
"staticOutDir": "asset"
}
],
"watcherGlob": "**"
}
}