-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.19 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.19 KB
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
{
"name": "another2tab",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"dev": "vue-cli-service build --mode development --dest build --watch",
"package": "cd dist ; rm AnotherTab.zip ; zip -r AnotherTab.zip .",
"release": "yarn run build && yarn run package",
"test": "vue-cli-service test:unit"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/vue-fontawesome": "^2.0.6",
"bootstrap": "^5.1.3",
"copy-webpack-plugin": "10",
"core-js": "^3.19.3",
"vue": "^2.6.14",
"vue-class-component": "^7.2.6",
"vue-clipboards": "^1.3.0",
"vue-property-decorator": "^9.1.2",
"vuedraggable": "^2.24.3",
"webpack-node-externals": "^3.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.3",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@popperjs/core": "^2.11.0",
"@types/node": "^16.11.12",
"@vue/cli-plugin-babel": "~5.0.0-rc.1",
"@vue/cli-plugin-eslint": "~5.0.0-rc.1",
"@vue/cli-service": "~5.0.0-rc.1",
"@vue/test-utils": "^1.3.0",
"babel-core": "^6.26.3",
"chrome-api": "^1.0.0",
"eslint": "^8",
"eslint-plugin-vue": "^8.2.0",
"expect": "^27.4.2",
"html-webpack-plugin": "^5.5.0",
"image-to-data-uri": "^1.1.0",
"jquery": "^3.6.0",
"jsdom": "^19.0.0",
"jsdom-global": "^3.0.2",
"less": "^4.1.2",
"less-loader": "^12.3.0",
"node-sass": "^9.0.0",
"sass-loader": "^16.0.5",
"vue-template-compiler": "^2.6.14"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {
"no-undef": "off",
"no-undefined": "off",
"vue/multi-word-component-names": "off"
}
},
"browserslist": [
"last 2 years"
],
"webpack": {
"devtool": "cheap-module-source-map"
}
}