generated from shadil-rayyan/nextjs_template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.14 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.14 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
{
"name": "nextjs_tempalate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "eslint",
"codegen": "playwright codegen",
"test": "jest",
"test:unit": "jest",
"test:e2e": "playwright test",
"test:ui": "playwright test",
"sitemap": "next-sitemap",
"prettier": "prettier --write .",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"bundlesize": "bundlesize",
"Docker-build": "docker build -t nextjs_tempalate .",
"Docker-run": "docker run -p 3000:3000 nextjs_tempalate",
"seed": "tsx src/lib/db/seed.ts"
},
"dependencies": {
"@neondatabase/serverless": "^1.0.1",
"date-fns": "^4.1.0",
"dotenv": "^17.2.2",
"drizzle-kit": "^0.31.4",
"drizzle-orm": "^0.44.5",
"firebase": "^12.2.1",
"firebase-admin": "^13.5.0",
"lucide-react": "^0.542.0",
"next": "15.5.2",
"node-fetch": "^2.7.0",
"pg": "^8.16.3",
"pino": "^9.9.0",
"prom-client": "^15.1.3",
"react": "19.1.0",
"react-datepicker": "^8.7.0",
"react-dom": "19.1.0",
"react-icons": "^5.5.0",
"react-testing-library": "^8.0.1",
"react-time-picker": "^8.0.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.55.0",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/dotenv": "^6.1.1",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/pg": "^8.15.5",
"@types/pino": "^7.0.4",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/testing-library__react": "^10.0.1",
"eslint": "^9",
"eslint-config-next": "15.5.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"next-pwa": "^5.6.0",
"next-seo": "^6.8.0",
"next-sitemap": "^4.2.3",
"playwright": "^1.55.0",
"standard-version": "^9.5.0",
"tailwindcss": "^4",
"ts-jest": "^29.4.1",
"tsx": "^4.20.5",
"typescript": "^5"
}
}