forked from Team-HAGOJAEBI/diground-fe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.52 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev:only": "next dev --turbopack --port 3000",
"open-browser": "npx wait-on tcp:3000 && open http://localhost:3000",
"dev": "pnpm prisma generate && pnpm run dev:only",
"dev:auto": "pnpm prisma generate & pnpm run dev:only & pnpm run open-browser",
"build": "next build",
"start": "next start",
"lint": "eslint \"src/**/*.+(ts|tsx)\"",
"test": "vitest",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"lint:fix": "eslint \"src/**/*.+(ts|tsx)\" --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --max-warnings=0",
"prettier --write"
]
},
"dependencies": {
"@auth/core": "^0.40.0",
"@auth/prisma-adapter": "^2.10.0",
"@prisma/client": "^6.13.0",
"auth": "link:@/auth",
"axios": "^1.11.0",
"jotai": "^2.12.5",
"jsonwebtoken": "^9.0.2",
"next": "15.3.2",
"next-auth": "5.0.0-beta.29",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.18.0",
"@ianvs/prettier-plugin-sort-imports": "4.4.0",
"@next/eslint-plugin-next": "^15.4.1",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.1.11",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"@vitejs/plugin-react": "^4.5.1",
"autoprefixer": "^10.4.21",
"dotenv-cli": "^10.0.0",
"eslint": "9.18.0",
"eslint-config-next": "15.1.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.2",
"msw": "^2.10.2",
"postcss": "^8.5.6",
"prettier": "3.4.2",
"prettier-plugin-sort-json": "4.1.1",
"prettier-plugin-tailwindcss": "^0.6.14",
"prisma": "^6.13.0",
"tailwind-variants": "^2.0.1",
"tailwindcss": "^4.1.11",
"typescript": "^5",
"vitest": "^3.2.1",
"wait-on": "^7.2.0"
},
"msw": {
"workerDirectory": [
"public"
]
}
}