-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.07 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.07 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
50
51
52
53
54
55
56
{
"name": "devtaskmanager",
"description": "DevTaskManager is a browser extension designed specifically for developers. With this tool, you can efficiently organize your daily tasks, both in project-specific forums and on-the-go. The extension offers robust task management functionality and calendar integration, making it a perfect solution for streamlining workflows and meeting deadlines.",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"frontend": "vite",
"backend": "dotnet run --project backend/DevTaskManager.csproj",
"dev": "concurrently \"npm run frontend\" \"npm run backend\"",
"build": "tsc -b && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"@fontsource/inter": "^5.1.0",
"@fontsource/roboto": "^5.1.0",
"@heroicons/react": "^2.1.5",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@tsparticles/engine": "^3.5.0",
"@tsparticles/react": "^3.0.0",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"lucide-react": "^0.426.0",
"next": "^14.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.0",
"react-tsparticles": "^2.12.2",
"tailwindcss": "^3.4.9",
"tailwindcss-animate": "^1.0.7",
"tsparticles": "^3.5.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "2.0.0-beta.18",
"@types/chrome": "^0.0.277",
"@types/estree": "^1.0.5",
"@types/node": "^22.7.9",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vite": "^4.5.5"
}
}