-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
executable file
·73 lines (73 loc) · 2.48 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
{
"name": "icloud-hide-my-email-browser-extension",
"version": "1.2.9",
"description": "Cross-browser extension enabling the usage of iCloud's Hide My Email service.",
"license": "MIT",
"author": "dedoussis",
"repository": {
"type": "git",
"url": "https://github.com/dedoussis/icloud-hide-my-email-browser-extension.git"
},
"scripts": {
"prebuild": "rm -rf build",
"build": "node utils/build.js",
"prebuild:firefox": "rm -rf build",
"build:firefox": "FIREFOX=true node utils/build.js",
"start": "node utils/webserver.js",
"start:firefox": "FIREFOX=true node utils/webserver.js",
"lint": "eslint .",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx,json,css,scss,md,eslintrc}'",
"prettier:check": "prettier --check '**/*.{js,jsx,ts,tsx,json,css,scss,md,eslintrc}'"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"fuse.js": "^6.6.2",
"lodash.isequal": "^4.5.0",
"lodash.startcase": "^4.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uuid": "^8.3.2",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@types/chrome": "^0.0.243",
"@types/lodash.isequal": "^4.5.6",
"@types/lodash.startcase": "^4.4.7",
"@types/react": "^17.0.39",
"@types/react-dom": "^18.2.18",
"@types/uuid": "^8.3.4",
"@types/webextension-polyfill": "^0.12.1",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"autoprefixer": "^10.4.8",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^6.6.0",
"eslint": "^8.30.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"node-sass": "^8.0.0",
"postcss": "^8.4.16",
"postcss-loader": "^7.0.1",
"prettier": "^2.5.1",
"sass-loader": "^13.2.1",
"style-loader": "^3.3.1",
"tailwindcss": "^3.1.8",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.6",
"typescript": "^5.0.2",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}