-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.19 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.19 KB
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
{
"name": "alighieri",
"version": "0.9.6",
"description": "A distraction-free tool for novelists and writers",
"productName": "Alighieri",
"author": "Emanuele Bertoldi <emanuele.bertoldi@gmail.com>",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:zuck/alighieri.git"
},
"scripts": {
"lint": "eslint --ext .js,.vue ./",
"test": "echo \"No test specified\" && exit 0",
"deploy": "quasar build -m pwa && gh-pages -d dist/pwa/",
"package": "quasar build -m electron -P always"
},
"dependencies": {
"@quasar/extras": "^1.16.17",
"@tiptap/extension-code-block": "^2.0.0-beta.37",
"@tiptap/extension-floating-menu": "^2.0.0-beta.50",
"@tiptap/extension-image": "^2.0.0-beta.27",
"@tiptap/extension-link": "^2.11.7",
"@tiptap/extension-text-align": "^2.0.0-beta.29",
"@tiptap/extension-typography": "^2.0.0-beta.20",
"@tiptap/extension-underline": "^2.0.0-beta.23",
"@tiptap/starter-kit": "^2.0.0-beta.183",
"@tiptap/vue-3": "^2.0.0-beta.217",
"core-js": "^3.6.5",
"file-system-access": "^1.0.4",
"html-to-text": "^9.0.4",
"quasar": "^2.18.1",
"showdown": "^2.1.0",
"vue": "^3.2.40",
"vue-i18n": "^9.0.0",
"vuex": "^4.0.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.13.14",
"@electron/remote": "^2.0.9",
"@quasar/app-webpack": "^3.15.1",
"electron": "^35.2.0",
"electron-builder": "^24.13.3",
"eslint": "^7.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^7.0.0",
"eslint-webpack-plugin": "^2.4.0",
"gh-pages": "^5.0.0",
"workbox-webpack-plugin": "^6.5.4"
},
"browserslist": [
"last 10 Chrome versions",
"last 10 Firefox versions",
"last 4 Edge versions",
"last 7 Safari versions",
"last 8 Android versions",
"last 8 ChromeAndroid versions",
"last 8 FirefoxAndroid versions",
"last 10 iOS versions",
"last 5 Opera versions"
],
"engines": {
"node": ">= 12.22.1",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}