-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
67 lines (67 loc) · 2.36 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
{
"name": "leapp-browser-extension",
"version": "0.1.8",
"author": {
"name": "Noovolari",
"email": "[email protected]"
},
"description": "Leapp Multi-Console Extension",
"repository": "https://github.com/Noovolari/leapp-browser-extension",
"private": true,
"homepage": "https://leapp.cloud",
"scripts": {
"chrome-dev": "npm run build-chrome && cd build && web-ext run -t chromium",
"firefox-dev": "npm run build-firefox && cd build && web-ext run -t firefox-desktop",
"watch": "webpack --mode=development --watch --config config/webpack.config.js",
"build-chrome": "webpack --mode=production --env browser=chrome --config config/webpack.config.js",
"build-firefox": "webpack --mode=production --env browser=firefox --config config/webpack.config.js",
"test": "npx jest",
"test-coverage": "npx jest --coverage",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install"
},
"devDependencies": {
"@angular-eslint/builder": "14.1.2",
"@angular-eslint/eslint-plugin": "14.1.2",
"@angular-eslint/eslint-plugin-template": "14.1.2",
"@angular-eslint/schematics": "14.1.2",
"@angular-eslint/template-parser": "14.1.2",
"@babel/plugin-proposal-decorators": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/chrome": "^0.0.197",
"@types/firefox-webext-browser": "^94.0.1",
"@types/jest": "^28.0.8",
"@types/node": "^17.0.23",
"@types/prettier": "2.6.0",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"eslint": "8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "latest",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-prefer-arrow": "latest",
"eslint-plugin-prettier": "^4.2.1",
"file-loader": "^6.2.0",
"husky": "^8.0.0",
"jest": "^28.0.8",
"lint-staged": "12.3.5",
"mini-css-extract-plugin": "^2.6.1",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"ts-loader": "^9.4.1",
"typescript": "^4.8.2",
"web-ext": "^7.2.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"lint-staged": {
"*.ts": "eslint --fix"
}
}