-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
99 lines (99 loc) · 3.51 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
{
"name": "browser-ext-storage-x",
"version": "0.0.12",
"displayName": "StorageX",
"description": "An all-in-one localStorage/sessionStorage/cookie manager browser extension for Chrome/Edge/Firefox browser.",
"author": {
"name": "Rahul Kurup",
"email": "[email protected]"
},
"maintainers": [
"Piyush Gupta (https://github.com/piyu-sh/)",
"Rahul Kurup <[email protected]> (https://rahulkurup.com/)"
],
"private": true,
"sideEffects": false,
"bugs": {
"email": "[email protected]"
},
"engines": {
"node": ">=16.18.0",
"yarn": "1.22.19"
},
"volta": {
"node": "16.18.0"
},
"scripts": {
"publish:chrome": "node scripts/publish/chrome.mjs",
"publish:edge": "node scripts/publish/edge.mjs",
"publish": "concurrently -n \"chrome,edge\" -c \"red.bold,blue.bold\" \"npm:publish:chrome\" \"npm:publish:edge\"",
"clean": "rimraf dist",
"prepare": "husky install",
"compress": "node scripts/compress.mjs",
"dev": "yarn watch",
"build": "yarn clean && cross-env NODE_ENV=production webpack && yarn compress",
"build:stats": "yarn clean && cross-env STATS=1 NODE_ENV=production webpack",
"build:local": "yarn clean && cross-env NODE_ENV=development webpack && yarn compress",
"build:chrome": "cross-env NODE_ENV=development webpack --config ./webpack/chrome.js",
"build:firefox": "cross-env NODE_ENV=development webpack --config ./webpack/firefox.js",
"watch": "yarn clean && cross-env NODE_ENV=development webpack -w",
"watch:chrome": "cross-env NODE_ENV=development webpack --config ./webpack/chrome.js -w",
"watch:firefox": "cross-env NODE_ENV=development webpack --config ./webpack/firefox.js -w",
"start": "yarn clean && concurrently -n \"chrome,firefox\" -c \"red.bold,blue.bold\" \"npm:watch:chrome\" \"npm:watch:firefox\"",
"pretty": "prettier --loglevel=error --write ."
},
"lint-staged": {
"*.{js,jsx,ts,tsx,html,css,json,md}": "prettier --loglevel=error --write"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mantine/core": "^5.8.2",
"@mantine/hooks": "^5.8.2",
"@tabler/icons": "^1.112.0",
"emotion": "^11.0.0",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@babel/preset-env": "^7.20.2",
"@emotion/babel-plugin": "^11.10.5",
"@plasmohq/edge-addons-api": "^1.1.0",
"@types/chrome": "^0.0.202",
"@types/lodash": "^4.14.189",
"@types/react-dom": "^18.0.9",
"@types/webextension-polyfill": "^0.9.1",
"babel-loader": "^9.1.0",
"chrome-webstore-upload": "^1.0.0",
"concurrently": "^7.6.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.2",
"dotenv": "^16.0.3",
"dotenv-expand": "^9.0.0",
"generate-json-from-js-webpack-plugin": "^0.1.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"mkdirp": "^1.0.4",
"node-args": "^2.1.8",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.1",
"typescript": "^4.9.3",
"webextension-polyfill": "^0.10.0",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0",
"webpack-shell-plugin-next": "^2.3.1",
"zip-lib": "^0.7.3"
}
}