generated from jsam07/electron-vue-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 4.11 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "minerva",
"version": "1.0.0",
"description": "A Collaborative Markdown Editor for Professionals",
"main": "dist/main/index.cjs",
"engines": {
"node": ">=14.17.0"
},
"scripts": {
"dev": "node scripts/watch.mjs",
"build": "vue-tsc --project src/renderer/tsconfig.json --noEmit && node scripts/build.mjs && electron-builder",
"release:linux": "vue-tsc --project src/renderer/tsconfig.json --noEmit && node scripts/build.mjs && electron-builder build --linux",
"release:mac": "vue-tsc --project src/renderer/tsconfig.json --noEmit && node scripts/build.mjs && electron-builder build --mac",
"release:win": "vue-tsc --project src/renderer/tsconfig.json --noEmit && node scripts/build.mjs && electron-builder build --w",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"test": "cross-env NODE_ENV=test jest -i --colors --verbose --coverage --passWithNoTests",
"test:watch": "npm run test -- --watchAll"
},
"keywords": [
"electron",
"typescript",
"template",
"starter",
"boilerplate"
],
"author": "Minerva-MD",
"license": "GPL-3.0",
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.0",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/line-clamp": "^0.3.1",
"@types/eslint": "^8.4.1",
"@types/jest": "^27.5.1",
"@types/jsdom": "^16.2.14",
"@types/markdown-it": "^12.2.3",
"@types/marked": "^4.0.2",
"@types/node": "^17.0.36",
"@types/splitpanes": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"@vitejs/plugin-vue": "^2.2.0",
"@vitejs/plugin-vue-jsx": "^1.3.4",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^2.0.0-rc.17",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.4",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"cypress": "^9.4.1",
"dotenv": "^16.0.0",
"electron": "16.0.8",
"electron-builder": "^22.14.13",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"eslint-plugin-vue": "^8.5.0",
"jsdom": "^19.0.0",
"postcss": "^8.4.12",
"prettier": "^2.5.1",
"splitpanes": "^3.1.0",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.0.23",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"vite": "^2.8.0",
"vite-plugin-resolve": "^1.4.3",
"vitest": "^0.3.2",
"vue-tsc": "^0.31.2"
},
"dependencies": {
"@codemirror/basic-setup": "^0.19.1",
"@codemirror/collab": "^0.19.0",
"@codemirror/lang-markdown": "^0.19.6",
"@codemirror/state": "^0.19.9",
"@codemirror/text": "^0.19.6",
"@codemirror/view": "^0.19.45",
"@headlessui/vue": "^1.5.0",
"@heroicons/vue": "^1.0.6",
"@octokit/core": "^3.6.0",
"@replit/codemirror-vim": "^0.19.1",
"axios": "^0.26.1",
"electron-oauth2": "^3.0.0",
"fountain-js": "^1.0.0",
"fs": "^0.0.1-security",
"highlight.js": "^11.5.1",
"jest": "^28.1.0",
"jwt-decode": "^3.1.2",
"keytar": "^7.9.0",
"markdown-it": "^12.3.2",
"marked": "^4.0.12",
"octokit": "^1.7.1",
"pinia": "^2.0.11",
"pulldown-cmark-wasm": "file:src/main/services/parsers/pulldown_cmark_wasm",
"simple-git": "^3.2.6",
"socket.io-client": "^4.4.1",
"ts-jest": "^28.0.3",
"vue": "^3.2.30",
"vue-demi": "^0.12.5",
"vue-router": "^4.0.12"
},
"env": {
"//": "Used in build scripts",
"PORT": 3344
}
}