-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
78 lines (78 loc) · 2.79 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
{
"name": "vue-telescope-extension",
"version": "1.9.0",
"description": "The Vue Telescope extension to discover Vue websites.",
"author": "NuxtJS Company",
"license": "GPL-3.0",
"engines": {
"node": ">=10"
},
"scripts": {
"lint": "eslint --ext .js,.vue src",
"build:dev": "cross-env NODE_ENV=development webpack --hide-modules",
"build-zip": "node scripts/build-zip.js",
"build-zip:firefox": "node scripts/build-zip.js --build-browser firefox",
"watch:tailwind": "NODE_ENV=development postcss src/tailwind.css -o dist/tailwind.css -w",
"dev:tailwind": "NODE_ENV=development postcss src/tailwind.css -o dist/tailwind.css",
"build:tailwind": "NODE_ENV=production postcss src/tailwind.css -o dist/tailwind.css",
"watch": "npm run build -- --watch",
"watch:dev": "cross-env HMR=true npm run build:dev -- --watch",
"dev": "concurrently \"npm run watch:tailwind\" \"npm run watch:dev\"",
"build": "npm run build:tailwind && webpack --mode production",
"build:firefox": "npm run build:tailwind && webpack --mode production --build-browser firefox && cp dist/tailwind.css dist-firefox/tailwind.css",
"release": "standard-version && git push --follow-tags origin main"
},
"dependencies": {
"@babel/polyfill": "^7.8.7",
"concurrently": "^5.2.0",
"dotenv": "^8.2.0",
"fs": "0.0.1-security",
"postcss-cli": "^7.1.0",
"postcss-loader": "^3.0.0",
"tailwindcss": "^1.3.5",
"vue": "^2.6.12",
"vue-telescope-analyzer": "^0.10.1",
"vuex": "^3.1.3",
"webextension-polyfill": "^0.3.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/runtime-corejs3": "^7.4.0",
"archiver": "^3.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.2",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.0.1",
"cross-env": "^5.2.0",
"css-loader": "^3.4.0",
"ejs": "^2.6.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"file-loader": "^5.0.2",
"google-fonts-webpack-plugin": "^0.4.4",
"html-loader": "^1.1.0",
"mini-css-extract-plugin": "^0.9.0",
"minimist": "^1.2.8",
"standard-version": "^8.0.2",
"vue-loader": "^15.4.2",
"vue-svg-loader": "^0.16.0",
"vue-template-compiler": "^2.6.10",
"web-ext-types": "^2.1.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.3.10",
"webpack-extension-reloader": "^1.1.4"
},
"volta": {
"node": "16.20.0"
}
}