-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
86 lines (86 loc) · 2.65 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
{
"name": "image-optimizer",
"version": "1.4.0",
"description": "A tool for optimizing images and vector graphics",
"main": "build/src/main/index.js",
"scripts": {
"dev": "tsc-watch -p tsconfig.electron.json --onSuccess 'npm run dev:server'",
"dev:server": "node build/src/scripts/dev-server.js",
"build:ts": "tsc -p tsconfig.electron.json",
"build": "npm run build:ts && node build/src/scripts/build.js ",
"lint": "eslint --ext .js,.ts,.vue . src",
"lint:fix": "eslint --ext .js,.ts,.vue . --fix src",
"release": "bumpp -c 'build: release v' -t",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepare": "husky install"
},
"repository": "https://github.com/antonreshetov/image-optimizer",
"author": {
"name": "Anton Reshetov",
"url": "https://github.com/antonreshetov"
},
"lint-staged": {
"*.{js,ts,vue}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"axios": "^0.24.0",
"canvas-confetti": "^1.4.0",
"cwebp-bin": "6.1.2",
"electron-store": "^8.0.1",
"fs-extra": "^10.0.0",
"gifsicle": "5.3.0",
"junk": "^3.1.0",
"mime-types": "^2.1.34",
"mozjpeg": "^7.0.0",
"pinia": "^2.0.9",
"pngquant-bin": "^6.0.0",
"queue": "^6.0.2",
"svgo": "^2.8.0",
"vue": "^3.2.26",
"vue-router": "^4.0.12"
},
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@types/canvas-confetti": "^1.4.2",
"@types/estree": "^0.0.50",
"@types/gifsicle": "^5.2.0",
"@types/mime-types": "^2.1.1",
"@types/mozjpeg": "^5.0.0",
"@types/node": "^17.0.4",
"@types/pngquant-bin": "^4.0.0",
"@types/svgo": "^2.6.0",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"@vitejs/plugin-vue": "^1.10.2",
"@vue/cli": "^4.5.15",
"@vue/eslint-config-standard": "^6.1.0",
"bumpp": "^7.1.1",
"chalk": "^4.1.2",
"chokidar": "^3.5.2",
"electron": "^16.0.5",
"electron-builder": "^22.14.5",
"electron-devtools-installer": "^3.2.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^8.2.0",
"husky": "^7.0.0",
"lint-staged": "^12.1.4",
"prettier": "^2.5.1",
"sass": "^1.45.1",
"tsc-watch": "^4.6.0",
"typescript": "^4.5.4",
"unplugin-icons": "^0.13.0",
"unplugin-vue-components": "^0.17.11",
"vite": "^2.7.6",
"vue-tsc": "^0.30.0"
}
}