-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.21 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.21 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
73
{
"name": "markdown-editor",
"version": "0.0.1",
"description": "Simple markdown editor",
"productName": "Markdown editor",
"author": "JunHaoShih <victor5517@gmail.com>",
"private": true,
"scripts": {
"lint": "eslint --ext .js,.ts,.vue ./",
"test": "echo \"See package.json => scripts for available tests.\" && exit 0",
"prepare": "husky install",
"test:unit:ui": "vitest --ui",
"test:unit": "vitest",
"test:unit:ci": "vitest run",
"test:unit:ci:coverage": "vitest run --coverage"
},
"dependencies": {
"@capacitor/app": "^5.0.6",
"@capacitor/filesystem": "^5.1.4",
"@capacitor/local-notifications": "^5.0.6",
"@electron/remote": "^2.0.10",
"@quasar/extras": "^1.0.0",
"@types/dompurify": "^3.0.2",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-emoji": "^2.0.4",
"@types/markdown-it-footnote": "^3.0.3",
"@types/uuid": "^9.0.2",
"axios": "^1.2.1",
"dompurify": "^3.0.5",
"firebase": "^10.3.0",
"highlight.js": "^11.8.0",
"markdown-it": "^13.0.1",
"markdown-it-emoji": "^2.0.2",
"markdown-it-footnote": "^3.0.3",
"mermaid": "^9.4.0",
"monaco-editor": "^0.41.0",
"pinia": "^2.0.11",
"quasar": "^2.6.0",
"uuid": "^9.0.0",
"vue": "^3.0.0",
"vue-i18n": "^9.2.2",
"vue-router": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@intlify/vite-plugin-vue-i18n": "^3.3.1",
"@quasar/app-vite": "^1.0.0",
"@quasar/quasar-app-extension-testing-unit-vitest": "^0.4.0",
"@types/node": "^12.20.21",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"@vitest/coverage-v8": "^0.34.0",
"@vue/test-utils": "^2.4.1",
"autoprefixer": "^10.4.16",
"electron": "^25.9.7",
"electron-packager": "^17.1.1",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-vue": "^9.0.0",
"husky": "^8.0.3",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.3",
"typescript": "^4.5.4",
"vitest": "^0.34.0"
},
"engines": {
"node": "^18 || ^16 || ^14.19",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}