-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "addy-io-extension",
"version": "2.3.4",
"description": "addy.io browser extension.",
"main": "app.js",
"scripts": {
"dev": "mix",
"watch": "mix watch",
"production": "mix --production",
"build": "npm run production && rm -rf dist-zip && npm run zip",
"format": "prettier --write 'src/assets/**/*.{css,js,vue}'",
"zip": "node scripts/build-zip.js",
"pre-commit": "lint-staged",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@kyvg/vue3-notification": "^3.0.0",
"@vueform/multiselect": "^2.3.2",
"archiver": "^7.0.0",
"autoprefixer": "^10.4.1",
"dayjs": "^1.10.5",
"laravel-mix": "^6.0.11",
"lodash": "^4.17.21",
"postcss": "^8.4.5",
"postcss-import": "^16.0.0",
"psl": "^1.9.0",
"tailwindcss": "^3.0.11",
"v-clipboard": "^3.0.0-next.1",
"vue": "^3.0.0",
"vue-loader": "^17.0.0",
"vue-template-compiler": "^2.6.12",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"css-loader": "^7.0.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0"
},
"lint-staged": {
"*.{css,js,vue}": [
"prettier --write"
]
}
}