-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
53 lines (53 loc) · 1.54 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
{
"name": "codecov-browser-extension",
"version": "0.1.0",
"description": "Codecov Browser Extension",
"main": "index.js",
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"lint": "prettier --write \"src/**/*.{ts,tsx}\""
},
"author": "",
"license": "UNLICENSED",
"dependencies": {
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@sentry/browser": "^8.37.1",
"clsx": "^1.2.1",
"code-tag": "^1.1.0",
"color-alpha": "^1.1.3",
"dom-chef": "^5.1.0",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tether-drop": "^1.4.2",
"url-join": "^5.0.0",
"webext-patterns": "^1.2.0",
"webextension-polyfill": "^0.10.0",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@sentry/webpack-plugin": "^2.16.1",
"@types/chrome": "0.0.158",
"@types/lodash": "^4.14.191",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/tether-drop": "^1.4.9",
"@types/webextension-polyfill": "^0.10.0",
"autoprefixer": "^10.4.14",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.7.3",
"postcss": "^8.4.49",
"postcss-loader": "^7.0.2",
"prettier": "^2.2.1",
"style-loader": "^3.3.1",
"tailwindcss": "^3.2.7",
"ts-loader": "^8.0.0",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"typescript": "^4.4.3 ",
"webpack": "^5.76.0",
"webpack-cli": "^4.0.0",
"webpack-merge": "^5.0.0"
}
}