-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
executable file
·127 lines (127 loc) · 4.38 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "conventionalcomments-web-ext",
"license": "GPL-3.0-only",
"version": "2.3.4",
"scripts": {
"postinstall": "node scripts/postInstall.mjs",
"rollup:popup": "rollup -c rollup/popup.config.js",
"rollup:contentScript": "rollup -c rollup/contentScript.config.js",
"rollup:background": "rollup -c rollup/background.config.js",
"web-ext:build": "web-ext build --overwrite-dest",
"build": "npm-run-all -p rollup:** -s web-ext:build",
"dev": "run-p 'rollup:** -- -w'",
"lint": "npm-run-all lint:**",
"lint:eslint": "eslint --max-warnings 0 --ignore-path .gitignore --ignore-pattern *.d.ts --ext .ts,.tsx,.js,.svelte .",
"lint:prettier": "prettier -c --ignore-path .gitignore **/*.{svelte,css}",
"lint:tsc": "tsc --noEmit",
"lint:svelte": "svelte-check --fail-on-warnings --fail-on-hints",
"test": "jest",
"version": "node scripts/newVersion.js && git add public/manifest.json",
"postversion": "git push origin main && git push origin refs/tags/v$npm_package_version",
"2fa-code": "node scripts/getTwoFactorAuthenticationCode.mjs",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"update-screenshots": "node scripts/getScreenshotsFromCI.mjs"
},
"devDependencies": {
"@babel/core": "7.18.2",
"@gitbeaker/rest": "40.0.3",
"@inquirer/select": "2.3.4",
"@octokit/request-error": "5.1.0",
"@playwright/test": "1.50.0",
"@rollup/plugin-commonjs": "22.0.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-typescript": "8.3.2",
"@storybook/addon-actions": "6.5.6",
"@storybook/addon-essentials": "6.5.6",
"@storybook/addon-interactions": "6.5.6",
"@storybook/addon-links": "6.5.6",
"@storybook/builder-webpack4": "6.5.6",
"@storybook/manager-webpack4": "6.5.6",
"@storybook/react": "6.5.6",
"@storybook/testing-library": "^0.0.11",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react-hooks": "8.0.0",
"@testing-library/svelte": "3.0.3",
"@tsconfig/svelte": "2.0.1",
"@types/chrome": "0.0.270",
"@types/chrome-remote-interface": "0.31.11",
"@types/config": "3.3.0",
"@types/dompurify": "2.3.1",
"@types/jest": "27.5.1",
"@types/marked": "2.0.2",
"@types/node": "22.10.10",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@types/semver": "7.3.9",
"@types/uuid": "8.3.0",
"@types/wait-on": "5.3.2",
"@typescript-eslint/eslint-plugin": "5.27.0",
"@typescript-eslint/parser": "5.27.0",
"chrome-remote-interface": "0.33.0",
"chrome-webstore-upload-cli": "2.1.0",
"config": "3.3.9",
"eslint": "8.16.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "26.4.6",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "4.5.0",
"eslint-plugin-storybook": "^0.5.12",
"eslint-plugin-svelte3": "4.0.0",
"get-google-fonts": "1.2.2",
"image-size": "1.0.1",
"jest": "28.1.0",
"jest-environment-jsdom": "28.1.1",
"jest-webextension-mock": "3.7.22",
"lodash.merge": "4.6.2",
"lodash.trim": "4.5.1",
"node-fetch": "3.2.4",
"npm-run-all": "4.1.5",
"otplib": "12.0.1",
"prettier": "2.6.2",
"prettier-plugin-svelte": "2.7.0",
"rollup": "2.74.1",
"rollup-plugin-css-only": "3.1.0",
"rollup-plugin-inject-process-env": "1.3.1",
"rollup-plugin-livereload": "2.0.5",
"rollup-plugin-svelte": "7.1.0",
"rollup-plugin-terser": "7.0.2",
"sass": "1.43.2",
"storybook": "6.5.6",
"svelte": "3.42.4",
"svelte-check": "2.7.1",
"svelte-jester": "2.1.1",
"svelte-preprocess": "4.9.1",
"svelte-select": "4.4.3",
"ts-jest": "28.0.3",
"tslib": "2.4.0",
"typescript": "4.7.3",
"wait-on": "7.0.1",
"web-ext": "7.1.0",
"web-ext-submit": "7.1.0",
"yauzl": "3.1.3",
"zod": "3.22.4"
},
"dependencies": {
"@emotion/react": "11.9.0",
"@emotion/styled": "11.8.1",
"@mui/icons-material": "5.8.0",
"@mui/material": "5.8.0",
"chota": "0.8.0",
"dompurify": "2.3.3",
"escape-string-regexp": "4.0.0",
"marked": "2.0.3",
"octokit": "3.2.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"uuid": "8.3.2"
},
"webExt": {
"sourceDir": "public"
},
"private": true
}