-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.16 KB
/
package.json
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
{
"private": true,
"description": "An example project for NextAuth.js with Next.js and mikro-orm",
"repository": "https://github.com/xn4p4lm/next-auth-with-mikro-orm",
"bugs": {
"url": "https://github.com/xn4p4lm/next-auth-with-mikro-orm/issues"
},
"scripts": {
"dev": "next --experimental-https",
"build": "next build",
"start": "next start",
"db": "mikro-orm-esm",
"db:migration:create": "mikro-orm-esm migration:create",
"db:migration:apply": "mikro-orm-esm migration:up",
"db:seed": "mikro-orm-esm seeder:run"
},
"author": "Diana Moore <dmoore@xn4p4lm.com>",
"contributors": [
"Iain Collins <me@iaincollins.com>",
"Balázs Orbán <info@balazsorban.com>",
"Nico Domino <yo@ndo.dev>",
"Lluis Agusti <hi@llu.lu>",
"Thang Huu Vu <hi@thvu.dev>"
],
"mikro-orm": {
"useTsNode": true,
"tsConfigPath": "./tsconfig.orm.json",
"configPaths": [
"./mikro-orm.config.ts"
]
},
"dependencies": {
"@auth/mikro-orm-adapter": "^2.7.4",
"@mikro-orm/cli": "^6.4.2",
"@mikro-orm/core": "^6.4.2",
"@mikro-orm/mariadb": "^6.4.2",
"@mikro-orm/migrations": "^6.4.2",
"@mikro-orm/reflection": "^6.4.2",
"@mikro-orm/seeder": "^6.4.2",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-collapsible": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-navigation-menu": "^1.2.3",
"@radix-ui/react-slot": "^1.1.1",
"@simplewebauthn/server": "^13.0.0",
"@vercel/kv": "^3.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.469.0",
"next": "latest",
"next-auth": "5.0.0-beta.25",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"autoprefixer": "^10.4.20",
"eslint": "^9",
"eslint-config-next": "15.1.3",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"terser-webpack-plugin": "^5.3.11",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=20.0.0"
}
}