-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.08 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
{
"name": "my-crx-app",
"version": "0.0.0",
"author": "**",
"description": "",
"type": "module",
"license": "MIT",
"keywords": [
"chrome-extension",
"react",
"vite",
"create-chrome-ext"
],
"engines": {
"node": ">=14.18.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"fmt": "prettier --write '**/*.{tsx,ts,json,css,scss,md}'"
},
"dependencies": {
"@types/chrome": "^0.0.236",
"autoprefixer": "^10.4.14",
"axios": "^1.4.0",
"date-fns": "^2.30.0",
"qs": "^6.11.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^2.5.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "^1.0.12",
"@types/node": "^20.2.3",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@vitejs/plugin-react": "^1.3.2",
"autoprefixer": "^10.4.14",
"esbuild": "^0.17.19",
"glob": "^9.2.1",
"postcss": "^8.4.21",
"prettier": "^2.7.1",
"tailwindcss": "^3.3.0",
"typescript": "^4.6.4",
"vite": "^2.9.13"
}
}