-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.72 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.72 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
{
"name": "webcrate-extension",
"version": "1.2.0",
"description": "Add links to your own WebCrate instance directly via the browser",
"author": "Maximilian Schiller <schiller@mxis.ch>",
"repository": {
"type": "git",
"url": "https://github.com/WebCrateApp/browser-extension.git"
},
"homepage": "https://webcrate.app",
"license": "MIT",
"engines": {
"node": ">=10 <15"
},
"scripts": {
"update-manifest": "node scripts/update-manifest.js",
"clean": "rimraf dist",
"build-dist": "cross-env NODE_ENV=production webpack --hide-modules",
"build-zip": "node scripts/build-zip.js",
"prebuild": "npm run clean",
"predev": "npm run clean",
"lint": "eslint ./src",
"dev": "cross-env NODE_ENV=development webpack --watch",
"build": "npm run update-manifest && npm run build-dist && npm run build-zip"
},
"dependencies": {
"axios": "^0.21.1",
"vue": "^2.6.14",
"vue-select": "^3.13.0"
},
"devDependencies": {
"@babel/core": "^7.15.4",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/preset-env": "^7.15.4",
"@babel/runtime-corejs3": "^7.15.4",
"@betahuhn/config": "^1.2.0",
"@types/chrome": "^0.0.134",
"archiver": "^3.0.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.17.2",
"cross-env": "^5.2.0",
"css-loader": "^3.4.0",
"ejs": "^2.6.1",
"eslint": "^7.32.0",
"file-loader": "^5.0.2",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.0.0",
"rimraf": "^3.0.2",
"sass-loader": "^10.2.0",
"vue-loader": "^15.9.8",
"vue-template-compiler": "^2.6.14",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.10",
"webpack-extension-reloader": "^1.1.0"
}
}