-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.05 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
{
"name": "hackathon-extension",
"version": "1.0.0",
"description": "#### firt run ``` yarn",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "run-s clean && tsc && vite build",
"copy": "shx cp -r src/content-scripts dist/",
"clean": "shx rm -rf dist",
"run:chromium": "web-ext run -t chromium --source-dir dist",
"run:firefox": "web-ext run -t firefox-desktop --source-dir dist"
},
"author": "admeta",
"license": "ISC",
"dependencies": {
"axios": "^1.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-jazzicon": "^1.0.4"
},
"devDependencies": {
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/webextension-polyfill": "^0.9.0",
"@vitejs/plugin-react": "^2.0.1",
"autoprefixer": "^10.4.13",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.19",
"shx": "^0.3.4",
"tailwindcss": "^3.2.4",
"typescript": "^4.6.4",
"vite": "^3.0.7",
"vite-plugin-web-extension": "^1.4.4",
"web-ext": "^7.2.0",
"webextension-polyfill": "^0.10.0"
}
}