-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
83 lines (83 loc) · 2.57 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
{
"name": "Notething",
"private": false,
"version": "0.0.2",
"license": "MIT",
"engines": {
"node": ">=v14.16",
"npm": ">=7.7"
},
"main": "packages/main/dist/index.cjs",
"scripts": {
"build": "node scripts/build.js",
"precompile": "cross-env MODE=production npm run build",
"compile": "electron-builder build --config electron-builder.config.js --dir --config.asar=false",
"pretest": "cross-env MODE=test npm run build",
"test": "node tests/app.spec.js",
"watch": "node scripts/watch.js",
"lint": "eslint . --ext js,ts,vue",
"postinstall": "electron-builder install-app-deps"
},
"browserslist": [
"Chrome 91"
],
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache --fix"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.4.0",
"autoprefixer": "^10.3.1",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"electron": "^13.3.0",
"electron-builder": "^22.11.7",
"electron-devtools-installer": "^3.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier-vue": "^3.1.0",
"eslint-plugin-vue": "^7.16.0",
"lint-staged": "^11.1.2",
"postcss": "^8.3.6",
"postcss-nested": "^5.0.6",
"simple-git-hooks": "^2.5.1",
"spectron": "^15.0.0",
"tailwindcss": "^2.2.7",
"vite": "^2.4.4"
},
"dependencies": {
"@benrbray/prosemirror-math": "^0.2.2",
"@tailwindcss/typography": "^0.4.1",
"@tiptap/extension-code": "^2.0.0-beta.16",
"@tiptap/extension-code-block-lowlight": "^2.0.0-beta.34",
"@tiptap/extension-highlight": "^2.0.0-beta.15",
"@tiptap/extension-image": "^2.0.0-beta.15",
"@tiptap/extension-link": "^2.0.0-beta.19",
"@tiptap/extension-mention": "^2.0.0-beta.68",
"@tiptap/extension-placeholder": "^2.0.0-beta.27",
"@tiptap/extension-task-item": "^2.0.0-beta.17",
"@tiptap/extension-task-list": "^2.0.0-beta.17",
"@tiptap/extension-typography": "^2.0.0-beta.14",
"@tiptap/extension-underline": "^2.0.0-beta.16",
"@tiptap/starter-kit": "^2.0.0-beta.97",
"@tiptap/vue-3": "^2.0.0-beta.52",
"crypto-es": "^1.2.7",
"dayjs": "^1.10.6",
"electron-better-ipc": "^2.0.1",
"electron-store": "^8.0.0",
"electron-updater": "^4.4.5",
"fs-extra": "^10.0.0",
"katex": "^0.13.13",
"lowlight": "1.20.0",
"mousetrap": "^1.6.5",
"nanoid": "^3.1.25",
"pinia": "^2.0.0-rc.4",
"tiny-emitter": "^2.1.0",
"tippy.js": "^6.3.1",
"v-remixicon": "^0.0.9",
"vue": "^3.2.2",
"vue-router": "^4.0.11"
}
}