-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
56 lines (56 loc) · 2.03 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
{
"name": "@jetbrains/toolbox-browser-extension",
"version": "1.0.0",
"description": "Browser extension for JetBrains Toolbox",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"prebuild": "eslint . && stylelint '**/*.css'",
"build": "webpack --bail --mode production",
"postbuild": "node .scripts/generate-readme.js | node .scripts/generate-license-list.js",
"prepare": "husky",
"postinstall": "node .scripts/ensure-core.js",
"build:dev": "webpack --bail --mode development --devtool inline-source-map --infrastructure-logging-debug",
"watch": "webpack -w --mode development --devtool inline-source-map",
"build:chrome": "cross-env BROWSER=chrome yarn build",
"build:firefox": "cross-env BROWSER=firefox yarn build",
"build:dev:chrome": "cross-env BROWSER=chrome yarn build:dev",
"build:dev:firefox": "cross-env BROWSER=firefox yarn build:dev",
"watch:chrome": "cross-env BROWSER=chrome yarn watch",
"watch:firefox": "cross-env BROWSER=firefox yarn watch"
},
"dependencies": {
"@jetbrains/logos": "^3.0.1",
"bitbucket-url-to-object": "^0.3.0",
"github-url-to-object": "^4.0.4",
"parse-bitbucket-url": "^0.3.0",
"selector-observer": "^2.1.6"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@babel/preset-env": "^7.24.4",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"core-js": "^3.37.0",
"cross-env": "^7.0.3",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.1.0",
"husky": "^9.0.11",
"license-checker-rseidelsohn": "^4.3.0",
"lint-staged": "^15.2.2",
"node-polyfill-webpack-plugin": "^4.0.0",
"prettier": "^3.3.3",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"lint-staged": {
"*.{js,mjs}": "eslint --fix",
"*.css": "stylelint --fix",
"**/*.{js,mjs,json,css}": "prettier --write --ignore-unknown"
}
}