-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.95 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.95 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
{
"name": "@mikro-orm/adonis-example-app",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "MikroORM example app with AdonisJS",
"repository": "https://github.com/mikro-orm/adonis-example-app",
"author": "Martin Adamek",
"license": "MIT",
"scripts": {
"start": "node bin/server.js",
"build": "node ace build",
"dev": "node ace serve --hmr",
"test": "node ace test",
"lint": "eslint .",
"typecheck": "tsc --noEmit"
},
"imports": {
"#auth/*": "./app/auth/*.js",
"#controllers/*": "./app/controllers/*.js",
"#entities/*": "./app/entities/*.js",
"#exceptions/*": "./app/exceptions/*.js",
"#middleware/*": "./app/middleware/*.js",
"#repositories/*": "./app/repositories/*.js",
"#subscribers/*": "./app/subscribers/*.js",
"#providers/*": "./providers/*.js",
"#database/*": "./database/*.js",
"#start/*": "./start/*.js",
"#config/*": "./config/*.js",
"#tests/*": "./tests/*.js"
},
"dependencies": {
"@adonisjs/auth": "^10.0.0",
"@adonisjs/core": "^7.0.1",
"@adonisjs/session": "^8.0.0",
"@mikro-orm/core": "^7.0.6",
"@mikro-orm/migrations": "^7.0.6",
"@mikro-orm/sqlite": "^7.0.6",
"argon2": "^0.44.0",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@adonisjs/assembler": "^8.0.1",
"@adonisjs/tsconfig": "^2.0.0",
"@japa/api-client": "^3.2.1",
"@japa/assert": "^4.2.0",
"@japa/plugin-adonisjs": "^5.1.0",
"@japa/runner": "^5.3.0",
"@mikro-orm/cli": "^7.0.6",
"@mikro-orm/seeder": "^7.0.6",
"@poppinss/ts-exec": "^1.0.0",
"@types/node": "^25.5.0",
"hot-hook": "^1.0.0",
"pino-pretty": "^13.1.3",
"typescript": "^5.9.3"
},
"hotHook": {
"boundaries": [
"./app/controllers/**/*.ts",
"./app/middleware/*.ts"
]
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./config/mikro-orm.config.ts",
"./build/config/mikro-orm.config.js"
]
}
}