-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.67 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
{
"name": "rotion",
"productName": "Rotion",
"version": "1.0.0",
"description": "A Notion alternative written with Electron",
"main": "./out/main/index.js",
"author": "Wallace Júnior",
"homepage": "https://www.electronjs.org",
"license": "ISC",
"scripts": {
"typecheck": "tsc --noEmit --composite false",
"start": "electron-vite preview",
"dev": "electron-vite dev --watch",
"build": "electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:win": "npm run build && electron-builder --win --config",
"build:mac": "electron-vite build && electron-builder --mac --config",
"build:linux": "electron-vite build && electron-builder --linux --config",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"prettier": "prettier --check src",
"prettier:fix": "prettier --write src",
"release": "electron-builder --publish always"
},
"dependencies": {
"@electron-toolkit/preload": "^1.0.2",
"@electron-toolkit/utils": "^1.0.2",
"@radix-ui/react-collapsible": "^1.0.1",
"@tanstack/react-query": "^4.19.1",
"@tiptap/extension-document": "^2.0.0-beta.207",
"@tiptap/extension-highlight": "^2.0.0-beta.207",
"@tiptap/extension-placeholder": "^2.0.0-beta.207",
"@tiptap/extension-typography": "^2.0.0-beta.207",
"@tiptap/react": "^2.0.0-beta.207",
"@tiptap/starter-kit": "^2.0.0-beta.207",
"clsx": "^1.2.1",
"cmdk": "^0.1.20",
"electron-router-dom": "^1.0.5",
"electron-store": "^8.1.0",
"phosphor-react": "^1.4.1",
"prosemirror-commands": "^1.5.0",
"prosemirror-dropcursor": "^1.6.1",
"prosemirror-gapcursor": "^1.3.1",
"prosemirror-history": "^1.3.0",
"prosemirror-keymap": "^1.2.0",
"prosemirror-schema-list": "^1.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.5"
},
"devDependencies": {
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron/notarize": "^1.2.3",
"@tailwindcss/typography": "^0.5.8",
"@types/node": "16.11.22",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"@vitejs/plugin-react": "^2.2.0",
"autoprefixer": "^10.4.13",
"electron": "^21.3.0",
"electron-builder": "^23.6.0",
"electron-vite": "^1.0.14",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.19",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.1",
"tailwind-scrollbar": "^2.0.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.3",
"vite": "^3.2.4"
}
}