-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.99 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
{
"name": "vue-web-extension-starter-pack",
"version": "0.1.0",
"description": "Chrome extension with Manifest V3 and VueJS 3.2 for the popup",
"license": "UNLICENSED",
"homepage": "https://github.com/aautcq/vue-web-extensions-starter-pack.git#readme",
"author": "Adrien Autricque <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/aautcq/vue-web-extensions-starter-pack.git"
},
"keywords": [
"chrome extension",
"manifest v3",
"vuejs"
],
"main": "background.js",
"engines": {
"node": "15.3.0",
"npm": "7.0.11"
},
"cacheDirectories": [
"node_modules"
],
"scripts": {
"dev": "NODE_ENV=development npm-run-all clean watchDev",
"watchDev": "webpack --watch --config webpack.dev.config.js",
"build": "NODE_ENV=production npm-run-all clean transpile",
"buildDev": "NODE_ENV=development npm-run-all clean transpileDev",
"transpile": "webpack --config webpack.prod.config.js",
"transpileDev": "webpack --config webpack.dev.config.js",
"clean": "rimraf dist",
"clear": "rm package-lock.json ; rimraf node_modules",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"lodash": "~4.17.21",
"vee-validate": "~4.4.11",
"vue": "~3.2.10",
"vuex": "~4.0.2"
},
"devDependencies": {
"@vue/compiler-sfc": "~3.2.10",
"babel-loader": "~8.2.2",
"clean-webpack-plugin": "~4.0.0-alpha.0",
"copy-webpack-plugin": "~9.0.1",
"css-loader": "~5.0.1",
"css-minimizer-webpack-plugin": "~3.0.2",
"dotenv-webpack": "~7.0.3",
"html-loader": "~1.3.2",
"html-webpack-plugin": "~5.0.0",
"mini-css-extract-plugin": "~2.2.0",
"npm-run-all": "~4.1.5",
"rimraf": "~3.0.2",
"sass": "~1.37.5",
"sass-loader": "~12.1.0",
"style-loader": "~3.2.1",
"uglify-js": "~3.14.1",
"vue-loader": "~16.5.0",
"vue-template-compiler": "~2.6.14",
"webpack": "~5.50.0",
"webpack-cli": "~4.7.2",
"webpack-merge": "~5.8.0"
}
}