-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.45 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.45 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "straydog-pomodoro-timeblock",
"private": true,
"version": "1.0.1",
"description": "Premium MERN Stack Pomodoro TimeBlock Application with Glassmorphic Design",
"type": "module",
"engines": {
"node": "22.x"
},
"scripts": {
"client:dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"check": "tsc --noEmit",
"server:dev": "nodemon",
"dev": "concurrently \"npm run client:dev\" \"npm run server:dev\"",
"start": "node api/index.js"
},
"keywords": [
"pomodoro",
"timeblock",
"productivity",
"mern",
"glassmorphism"
],
"author": "StrayDog Syndications LLC",
"contributors": [
{
"name": "Eric 'Hunter' Petross",
"url": "https://github.com/StrayDogSyn"
},
{
"name": "Mia 'Mausi' Smith",
"role": "Programming Manager",
"url": "https://github.com/miasmith81"
}
],
"license": "MIT",
"dependencies": {
"axios": "^1.7.2",
"bcryptjs": "^2.4.3",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"date-fns": "^3.6.0",
"dotenv": "^17.2.1",
"express": "^4.21.2",
"framer-motion": "^11.3.24",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.511.0",
"mongoose": "^8.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.2",
"react-hot-toast": "^2.6.0",
"react-router-dom": "^7.3.0",
"recharts": "^2.15.4",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"tailwind-merge": "^3.0.2",
"validator": "^13.11.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^22.15.30",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/validator": "^13.11.7",
"@vercel/node": "^5.3.6",
"@vitejs/plugin-react": "^4.4.1",
"autoprefixer": "^10.4.21",
"babel-plugin-react-dev-locator": "^1.0.0",
"concurrently": "^9.2.0",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"nodemon": "^3.1.10",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"tsx": "^4.20.3",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5",
"vite-plugin-trae-solo-badge": "^1.0.0",
"vite-tsconfig-paths": "^5.1.4"
}
}