-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.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
{
"name": "chrome-extension-boilerplate-react-vite",
"version": "1.0.0",
"description": "A chrome extension boilerplate built with React 18 and Vite 5",
"license": "MIT",
"type": "module",
"scripts": {
"lint": "eslint . --cache --cache-strategy content --cache-location .cache/.eslintcache",
"format": "prettier --config prettier.config.js --write .",
"watch": "tsc && vite build --watch",
"build": "tsc && vite build"
},
"dependencies": {
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@fontsource/roboto": "^5.1.0",
"@mui/icons-material": "^6.1.10",
"@mui/material": "^6.1.10",
"@mui/system": "^6.1.10",
"axios": "^1.7.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "2.0.0-beta.28",
"@eslint/js": "^9.16.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/react": "^18.3.14",
"@types/react-dom": "^18.3.2",
"@vitejs/plugin-react": "^4.3.4",
"chrome-types": "^0.1.323",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"prettier": "^3.4.2",
"typescript": "5.7.2",
"typescript-eslint": "^8.17.0",
"vite": "^5.4.11"
},
"packageManager": "[email protected]"
}