-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.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
{
"name": "kiitecafe-desktop",
"productName": "Kiite Cafe Desktop",
"private": true,
"version": "0.0.0",
"main": "dist/main.js",
"scripts": {
"predev": "rimraf dist/*",
"dev": "vite",
"prebuild": "rimraf dist/* dist-electron/*",
"build": "run-s build:*",
"build:vite": "vite build",
"build:electron": "electron-builder --config electron-builder.config.js --publish never",
"lint": "eslint --ext .js,.ts,.vue --ignore-path .gitignore ."
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/vue-fontawesome": "^3.0.2",
"conf": "^10.2.0",
"electron-store": "^8.1.0",
"node-fetch": "^3.2.10",
"sass": "^1.56.0",
"semver": "^7.3.8",
"vue": "^3.2.41",
"vue-material-design-icons": "^5.1.2",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@types/d3": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"@vitejs/plugin-vue": "^3.2.0",
"electron": "^21.2.0",
"electron-builder": "^23.6.0",
"electron-devtools-installer": "^3.2.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.8.4",
"vite": "^3.2.0",
"vite-plugin-checker": "^0.5.1",
"vite-plugin-electron": "^0.10.2",
"vue-tsc": "^1.0.9"
}
}