-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
92 lines (92 loc) · 2.61 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
{
"name": "markdown-editor",
"version": "3.2.5",
"description": "A Markdown Editor PWA",
"repository": {
"type": "git",
"url": "[email protected]:nico-martin/markdown-editor.git"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"generate-pwa-assets": "pwa-assets-generator"
},
"dependencies": {
"@datapunt/matomo-tracker-react": "^0.5.1",
"@mlc-ai/web-llm": "^0.2.76",
"@mlc-ai/web-tokenizers": "^0.1.5",
"@popperjs/core": "^2.11.8",
"@types/wicg-file-system-access": "^2020.9.6",
"@xenova/transformers": "^2.14.2",
"easy-scroll-sync": "^2.0.0",
"idb": "^7.1.1",
"js-cookie": "^3.0.5",
"quill": "^1.3.7",
"quill-delta": "^5.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.50.0",
"react-popper": "^2.3.0",
"react-select": "^5.8.0",
"showdown": "^2.1.0",
"turndown": "^7.1.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/js-cookie": "^3.0.6",
"@types/quill": "^2.0.14",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-scroll-sync": "^0.8.4",
"@types/showdown": "^2.0.1",
"@types/turndown": "^5.0.1",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vite-pwa/assets-generator": "^0.0.9",
"@vitejs/plugin-react": "^4.0.3",
"@webgpu/types": "^0.1.40",
"autoprefixer": "^10.4.14",
"dotenv": "^16.3.1",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"path": "^0.12.7",
"postcss-mixins": "^9.0.4",
"postcss-nested": "^6.0.1",
"postcss-preset-env": "^9.0.0",
"prettier": "^2.8.8",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-html-config": "^1.0.11",
"vite-plugin-pwa": "^0.16.4",
"vite-plugin-svgr": "^3.2.0",
"vite-tsconfig-paths": "^4.2.0"
},
"author": "Nico Martin - https://nico.dev",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/nico-martin/markdown-editor/issues"
},
"homepage": "https://md.nico.dev",
"browserslist": [
"> 1%"
],
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"importOrder": [
"<THIRD_PARTY_MODULES>",
"^@theme/(.*)$",
"^@app/(.*)$",
"^@utils/(.*)$",
"^@store/(.*)$",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
}
}