-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 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
{
"name": "timewise",
"version": "1.0.1",
"private": "false",
"scripts": {
"dev": "next dev",
"typecheck": "tsc --noEmit",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"bad": "npm run lint && npm run build #bad stands for build and deploy"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@plausible-analytics/tracker": "^0.4.5",
"date-fns": "^4.1.0",
"dotenv": "^17.4.2",
"firebase": "^12.13.0",
"framer-motion": "^12.38.0",
"lucide-react": "^1.14.0",
"next": "16.2.6",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-toastify": "^11.1.0",
"recharts": "^3.8.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@types/node": "^25.7.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^10.3.0",
"eslint-config-next": "16.2.6",
"postcss": "^8.5.14",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3"
}
}