forked from dessant/web-archives
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.74 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
{
"name": "web-archives",
"version": "4.0.0",
"author": "Armin Sebastian",
"license": "GPL-3.0-only",
"homepage": "https://github.com/dessant/web-archives",
"repository": {
"url": "https://github.com/dessant/web-archives.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/dessant/web-archives/issues"
},
"scripts": {
"_build": "cross-env NODE_ENV=development gulp build",
"build:chrome": "cross-env TARGET_ENV=chrome npm run _build",
"build:edge": "cross-env TARGET_ENV=edge npm run _build",
"build:firefox": "cross-env TARGET_ENV=firefox npm run _build",
"build:opera": "cross-env TARGET_ENV=opera npm run _build",
"build:safari": "cross-env TARGET_ENV=safari npm run _build",
"build:samsung": "cross-env TARGET_ENV=samsung npm run _build",
"_build:prod": "cross-env NODE_ENV=production gulp build",
"build:prod:chrome": "cross-env TARGET_ENV=chrome npm run _build:prod",
"build:prod:edge": "cross-env TARGET_ENV=edge npm run _build:prod",
"build:prod:firefox": "cross-env TARGET_ENV=firefox npm run _build:prod",
"build:prod:opera": "cross-env TARGET_ENV=opera npm run _build:prod",
"build:prod:safari": "cross-env TARGET_ENV=safari npm run _build:prod",
"build:prod:samsung": "cross-env TARGET_ENV=samsung npm run _build:prod",
"_build:prod:zip": "npm run _build:prod && gulp zip",
"build:prod:zip:chrome": "cross-env TARGET_ENV=chrome npm run _build:prod:zip",
"build:prod:zip:edge": "cross-env TARGET_ENV=edge npm run _build:prod:zip",
"build:prod:zip:firefox": "cross-env TARGET_ENV=firefox npm run _build:prod:zip",
"build:prod:zip:opera": "cross-env TARGET_ENV=opera npm run _build:prod:zip",
"build:prod:zip:safari": "cross-env TARGET_ENV=safari npm run _build:prod:zip",
"build:prod:zip:samsung": "cross-env TARGET_ENV=samsung npm run _build:prod:zip",
"start:chrome": "web-ext run -s dist/chrome -t chromium",
"start:firefox": "web-ext run -s dist/firefox -t firefox-desktop",
"start:android": "web-ext run -s dist/firefox -t firefox-android",
"inspect": "cross-env NODE_ENV=production gulp inspect",
"update": "ncu --upgrade",
"release": "standard-version",
"push": "git push --follow-tags origin master"
},
"dependencies": {
"@fontsource/roboto": "^4.5.8",
"buffer": "^6.0.3",
"core-js": "^3.27.2",
"idb-keyval": "^6.2.0",
"lodash-es": "^4.17.21",
"p-queue": "^7.3.0",
"uuid": "^9.0.0",
"vue": "^3.2.45",
"vue-resize": "^2.0.0-alpha.1",
"vuedraggable": "^4.1.0",
"vuetify": "3.1.3",
"vueton": "^0.2.0",
"webextension-polyfill": "^0.10.0",
"wesa": "^0.3.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.2",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-minify": "^0.5.2",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"cssnano": "^5.1.14",
"fs-extra": "^11.1.0",
"gulp": "^4.0.2",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-jsonmin": "^1.2.0",
"gulp-merge-json": "^2.1.2",
"gulp-postcss": "^9.0.1",
"lodash-webpack-plugin": "^0.11.6",
"mini-css-extract-plugin": "^2.7.2",
"npm-check-updates": "^16.6.3",
"postcss": "^8.4.21",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^8.0.1",
"prettier": "^2.8.3",
"recursive-readdir": "^2.2.3",
"sass": "^1.58.0",
"sass-loader": "^13.2.0",
"sharp": "^0.31.3",
"standard-version": "^9.5.0",
"vue-loader": "^17.0.1",
"web-ext": "^7.5.0",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.1",
"webpack-plugin-vuetify": "^2.0.1"
},
"overrides": {
"glob": "7.2.3"
},
"private": true
}