forked from jonahallibone/mikro-orm-nextjs
-
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) · 895 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 895 Bytes
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": "mikro-orm-nextjs",
"version": "0.1.0",
"private": true,
"mikro-orm": {
"useTsNode": true,
"tsConfigPath": "./tsconfig.orm.json",
"configPaths": [
"./config/mikro-orm.ts"
]
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@mikro-orm/core": "5.6.3",
"@mikro-orm/sqlite": "5.6.3",
"@mikro-orm/postgresql": "5.6.3",
"chance": "1.1.8",
"dotenv-flow": "3.2.0",
"next": "12.1.6",
"react": "18.1.0",
"react-dom": "18.1.0",
"reflect-metadata": "0.1.13"
},
"devDependencies": {
"@mikro-orm/cli": "5.6.3",
"@types/chance": "1.1.3",
"@types/dotenv-flow": "3.2.0",
"@types/node": "17.0.34",
"@types/react": "18.0.9",
"eslint": "8.15.0",
"eslint-config-next": "12.1.6",
"ts-node": "10.7.0",
"typescript": "4.6.4"
}
}