-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 849 Bytes
/
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
{
"name": "qwacky",
"version": "1.0.0",
"private": true,
"type": "module",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"styled-components": "^5.3.9",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@types/chrome": "^0.0.228",
"@types/node": "^18.15.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/styled-components": "^5.1.26",
"@vitejs/plugin-react": "^3.1.0",
"typescript": "^4.9.5",
"vite": "^4.2.0"
},
"scripts": {
"dev": "vite build --watch --mode development",
"dev:firefox": "vite build --watch --mode firefox",
"build": "tsc && vite build --mode production",
"build:firefox": "tsc && vite build --mode firefox",
"preview": "vite preview",
"clean": "rm -rf dist"
}
}