forked from crxjs/vite-4-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 861 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
{
"name": "test-vite-4-react",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:rebuild":"vite optimize --force",
"build": "tsc && vite build",
"preview": "vite preview",
"react-devtools": "react-devtools",
"react-devtools:patch": "patch-package --error-on-fail && npm run dev:rebuild",
"react-devtools:unpatch": "patch-package --reverse --error-on-fail && npm run dev:rebuild"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.14",
"@types/chrome": "^0.0.222",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react": "^3.1.0",
"patch-package": "^8.0.0",
"react-devtools": "^4.28.0",
"typescript": "^4.9.3",
"vite": "^4.1.0"
}
}