-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.73 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
101
102
103
104
105
106
107
108
109
110
111
{
"name": "webextension_v3",
"version": "1.0.0",
"description": "A WebExtension implementation of Alpheios",
"main": "src/background/background.js",
"scripts": {
"set-node-build-deps": "npx [email protected] alpheios-node-build --dev --only-peers",
"build": "npm run build-prod && npm run build-dev",
"build-prod": "npm run lint && node --experimental-modules ./node_modules/alpheios-node-build/dist/build.mjs -m webpack -M production -p app -c config.mjs",
"build-dev": "npm run lint && node --experimental-modules ./node_modules/alpheios-node-build/dist/build.mjs -m webpack -M production -p app -c config.mjs",
"build-prod-prev": "npx webpack --config build/webpack.config.js --mode=production",
"build-dev-prev": "npx webpack --config build/webpack.config.js --mode=development",
"lint": "npx eslint --fix src/**/*.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/plugin-transform-modules-commonjs": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/register": "^7.17.7",
"@babel/runtime": "^7.17.9",
"@vue/compiler-sfc": "^3.2.33",
"@vue/test-utils": "^1.3.0",
"alpheios-core": "https://github.com/alpheios-project/alpheios-core#incr-3.4.x",
"alpheios-node-build": "https://github.com/alpheios-project/node-build.git#v5",
"archiver": "^5.3.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-module-resolver": "^4.1.0",
"bytes": "^3.1.0",
"chalk": "^5.0.1",
"clean-webpack-plugin": "^4.0.0",
"command-line-args": "^5.2.1",
"copy-webpack-plugin": "6.3.2",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"eslint": "^8.14.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.2.9",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^8.7.1",
"eslint-scope": "^7.1.1",
"fibers": "^5.0.1",
"fs-extra": "^10.1.0",
"git-branch": "^2.0.1",
"imagemin": "^8.0.1",
"imagemin-jpegtran": "^7.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^10.0.1",
"inspectpack": "^4.7.1",
"install-peerdeps": "^2.0.3",
"intl-messageformat": "^9.13.0",
"mini-css-extract-plugin": "^2.6.0",
"node-sass": "^7.0.1",
"path": "^0.12.7",
"postcss": "^8.4.13",
"postcss-import": "^14.1.0",
"postcss-loader": "^6.2.1",
"postcss-safe-important": "^1.2.1",
"postcss-scss": "^4.0.4",
"sass": "^1.51.0",
"sass-loader": "^12.6.0",
"source-map-loader": "^3.0.1",
"url-loader": "^4.1.1",
"vue-loader": "^15.9.8",
"vue-style-loader": "^4.1.3",
"vue-svg-loader": "^0.16.0",
"vue-template-compiler": "^2.6.14",
"vue-template-loader": "^1.1.0",
"webpack": "^5.72.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-merge": "^5.8.0"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:jsdoc/recommended",
"plugin:vue/essential"
],
"env": {
"es6": true,
"browser": true,
"node": true
},
"parserOptions": {
"parser": "@babel/eslint-parser",
"ecmaVersion": 2019,
"sourceType": "module",
"allowImportExportEverywhere": true
},
"rules": {
"no-prototype-builtins": "warn",
"dot-notation": "warn",
"accessor-pairs": "warn"
}
},
"eslintIgnore": [
"**/dist",
"**/support"
]
}