-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.64 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.64 KB
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": "lmsdash-browser-extension",
"private": true,
"version": "0.4.0",
"type": "module",
"scripts": {
"build_contentScript": "rollup --config contentScript.rollup.config.ts",
"build_manifest": "cp manifest.json dist",
"build_vite": "vite build",
"build_app": "npm run build_vite && npm run build_contentScript && npm run build_manifest",
"build": "NODE_ENV=production npm run build_app",
"dev": "NODE_ENV=development npm run build_app",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"typecheck": "npx tsc --noEmit"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-collapsible": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-progress": "^1.1.2",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-toast": "^1.2.6",
"@radix-ui/react-tooltip": "^1.1.8",
"@tanstack/react-query": "^5.66.0",
"@types/chrome": "^0.1.27",
"animate.css": "^4.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-select": "^5.10.0"
},
"devDependencies": {
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.1.4",
"@tailwindcss/postcss": "^4.0.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"jest": "^29.7.0",
"postcss": "^8.5.2",
"tailwindcss": "^4.0.0",
"typescript": "^5.9.3",
"vite": "^6.1.0"
}
}