This repository has been archived by the owner on Oct 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
103 lines (103 loc) · 3.75 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
100
101
102
103
{
"name": "knzkapp",
"version": "1.4.5",
"description": "A mastodon client for customized instances.",
"repository": "git@github.com:KnzkDev/KnzkApp.git",
"author": "KnzkDev Team",
"license": "LICENSE.md",
"private": true,
"scripts": {
"lint:css": "stylelint **/*.scss",
"lint:js": "eslint \"**/*.js\"",
"lint:pug": "gulp lint-pug",
"lint": "npm-run-all lint:* -s",
"fmt:css": "stylelint --fix **/*.scss && prettier --write \"**/*.{css,scss}\"",
"fmt:js": "prettier --write \"**/*.js\"",
"fmt:md": "prettier --write \"**/*.md\"",
"fmt:yml": "prettier --write \"**/*.{yaml,yml}\"",
"fmt:json": "prettier --write \"**/*.json\"",
"fmt": "npm-run-all fmt:* -s",
"dev": "yarn build && serve www | gulp watch",
"build": "yarn check:fmt && yarn lint && gulp build",
"check:deps": "node ./scripts/check-deps.js",
"check:fmt:css": "prettier --check \"**/*.{css,scss}\"",
"check:fmt:js": "prettier --check \"**/*.js\"",
"check:fmt:md": "prettier --check \"**/*.md\"",
"check:fmt:yml": "prettier --check \"**/*.yml\"",
"check:fmt:json": "prettier --check \"**/*.json\"",
"check:fmt": "npm-run-all check:fmt:* -s",
"monaca:preview": "npm run dev"
},
"cordova": {
"plugins": {
"monaca-plugin-monaca-core": {},
"cordova-plugin-whitelist": {},
"cordova-plugin-splashscreen": {},
"cordova-custom-config": {},
"cordova-plugin-inappbrowser": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-camera": {
"CAMERA_USAGE_DESCRIPTION": "This operation needs camera access to take pictures.",
"PHOTOLIBRARY_USAGE_DESCRIPTION": "This operation needs photo library access to get pictures."
},
"cordova-plugin-safariviewcontroller": {},
"cordova-plugin-customurlscheme": {
"URL_SCHEME": "knzkapp"
},
"cordova-plugin-fcm": {},
"cordova-clipboard": {},
"cordova-plugin-file": {},
"cordova-plugin-ipad-multitasking": {},
"cordova-plugin-globalization": {},
"phonegap-plugin-speech-synthesis": {},
"cordova-plugin-ionic-keyboard": {}
}
},
"dependencies": {
"cordova-clipboard": "git+https://github.com/KnzkDev/cordova-clipboard",
"cordova-custom-config": "5.1.0",
"cordova-plugin-camera": "4.0.3",
"cordova-plugin-customurlscheme": "4.4.0",
"cordova-plugin-fcm": "git+https://github.com/KnzkDev/cordova-plugin-fcm",
"cordova-plugin-file": "6.0.1",
"cordova-plugin-globalization": "1.11.0",
"cordova-plugin-inappbrowser": "3.0.0",
"cordova-plugin-ionic-keyboard": "2.1.3",
"cordova-plugin-ipad-multitasking": "git+https://github.com/KnzkDev/cordova-plugin-ipad-multitasking",
"cordova-plugin-safariviewcontroller": "1.6.0",
"cordova-plugin-splashscreen": "5.0.2",
"cordova-plugin-statusbar": "2.4.2",
"cordova-plugin-whitelist": "1.3.3",
"monaca-plugin-monaca-core": "3.2.1",
"phonegap-plugin-speech-synthesis": "git+https://github.com/KnzkDev/SpeechSynthesisPlugin"
},
"devDependencies": {
"autoprefixer": "9.5.1",
"chalk": "2.4.2",
"cordova": "9.0.0",
"cssnano": "4.1.10",
"eslint": "5.16.0",
"eslint-config-prettier": "4.2.0",
"gulp": "4.0.1",
"gulp-concat": "2.6.1",
"gulp-plumber": "1.2.1",
"gulp-postcss": "8.0.0",
"gulp-pug": "4.0.1",
"gulp-pug-linter": "1.1.0",
"gulp-sass": "4.0.2",
"gulp-terser": "1.1.7",
"gulp-wait": "0.0.2",
"husky": "2.1.0",
"lint-staged": "8.1.5",
"log-symbols": "3.0.0",
"npm-run-all": "4.1.5",
"postcss-load-config": "2.0.0",
"postcss-sorting": "5.0.0",
"prettier": "1.17.0",
"prettier-stylelint": "0.4.2",
"pretty-quick": "1.10.0",
"serve": "11.0.0",
"stylelint": "10.0.1",
"stylelint-config-standard": "18.3.0"
}
}