-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.16 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.16 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
74
{
"name": "notee",
"version": "0.4.0",
"private": true,
"author": {
"email": "zarkonvvv@gmail.com",
"name": "Daniel Bervski",
"url": "https://pixels.bond"
},
"description": "Notee is a notes taking application based on EditorJS. It works offline, support plain formatted text, images, video, lists, etc",
"keywords": [
"notee",
"notee editor",
"text editor",
"editor",
"notes app",
"editor.js",
"editorjs",
"notes"
],
"repository": {
"type": "git",
"url": "git+https://github.com/daniberv/notee.git"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"@editorjs/delimiter": "^1.3.0",
"@editorjs/editorjs": "^2.27.0",
"@editorjs/embed": "^2.5.3",
"@editorjs/header": "^2.7.0",
"@editorjs/image": "^2.8.1",
"@editorjs/list": "^1.8.0",
"@editorjs/marker": "^1.3.0",
"@editorjs/paragraph": "^2.9.0",
"@editorjs/quote": "^2.5.0",
"@editorjs/warning": "^1.3.0",
"@electron/remote": "^2.0.10",
"@getstation/electron-google-oauth2": "^14.0.0",
"aws-sdk": "^2.1395.0",
"better-sqlite3": "^8.4.0",
"editorjs-gallery": "^1.0.12",
"editorjs-toggle-block": "^0.3.11",
"electron-store": "^8.1.0",
"lodash.debounce": "^4.0.8",
"mock-aws-s3": "^4.0.2",
"nock": "^13.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20.3.0",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react": "^4.0.0",
"electron": "^25.0.1",
"electron-builder": "^23.6.0",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"typescript": "^5.0.2",
"vite": "^4.3.2",
"vite-plugin-electron": "^0.11.2",
"vite-plugin-electron-renderer": "^0.14.5"
},
"main": "dist-electron/main.js"
}