-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.62 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
{
"name": "tavle-vue3-electron-app",
"version": "2.0.0",
"license": "MIT",
"main": "main.js",
"scripts": {
"start": "vite",
"build": "vite build --config vite.config.ts",
"start-electron" : "vite build --config vite.config.ts && electron .",
"preview": "vite preview",
"lint": "eslint --ext .ts,vue --ignore-path .gitignore .",
"test": "jest"
},
"dependencies": {
"autoprefixer": "^10.4.13",
"axios": "^0.24.0",
"pinia": "^2.0.13",
"postcss": "^8.4.19",
"tailwindcss": "^3.2.4",
"vite-tsconfig-paths": "^3.6.0",
"vue": "^3.2.33"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.30",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"@vitejs/plugin-vue": "^2.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^2.0.0-rc.17",
"@vue/vue3-jest": "^27.0.0-alpha.4",
"electron": "^22.0.0",
"eslint": "^8.6.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.2.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"sass": "^1.47.0",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5",
"vite": "^2.7.2",
"vite-plugin-eslint": "^1.3.0",
"vue-tsc": "^0.29.8"
},
"resolutions": {
"follow-redirects": "^1.14.8",
"nanoid": "^3.3.3",
"minimist": "^1.2.6"
},
"browserslist": [
"since 2014"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,vue}": "eslint --fix"
}
}