forked from JetBrains/toolbox-browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.65 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
{
"name": "@jetbrains/toolbox-browser-extension",
"version": "1.0.0",
"description": "Browser extension for JetBrains Toolbox",
"license": "Apache-2.0",
"scripts": {
"prebuild": "eslint .",
"build": "webpack --bail -p",
"postbuild": "node distribution/generate-readme.js",
"build:dev": "webpack --bail -p --mode=development --devtool=inline-source-map",
"watch": "webpack -w"
},
"dependencies": {
"@jetbrains/logos": "^1.2.10",
"bitbucket-url-to-object": "^0.3.0",
"content-scripts-register-polyfill": "1.0.0",
"github-url-to-object": "^4.0.4",
"parse-bitbucket-url": "^0.3.0",
"selector-observer": "^2.1.6",
"webext-additional-permissions": "^1.0.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@jetbrains/eslint-config": "^5.3.1",
"@jetbrains/ring-ui-license-checker": "^1.5.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.0.2",
"core-js": "^3.6.5",
"eslint": "^7.3.1",
"eslint-import-resolver-webpack": "^0.12.2",
"eslint-plugin-angular": "^4.0.1",
"eslint-plugin-bdd": "^2.1.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-react": "^7.20.0",
"file-loader": "^6.0.0",
"husky": "^4.2.5",
"imports-loader": "^1.0.0",
"lint-staged": "^10.2.11",
"regenerator-runtime": "^0.13.5",
"terser-webpack-plugin": "^3.0.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"yarn prebuild --fix",
"git add"
]
}
}