Created
May 18, 2024 15:39
-
-
Save muniter/563d4cd4bf880912d207c1351ee62374 to your computer and use it in GitHub Desktop.
adonis_package_json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "monojs", | |
"version": "0.0.0", | |
"private": true, | |
"type": "module", | |
"license": "UNLICENSED", | |
"scripts": { | |
"start": "node bin/server.js", | |
"build": "node ace build", | |
"dev": "node ace serve --hmr", | |
"test": "node ace test", | |
"lint": "eslint .", | |
"format": "prettier --write .", | |
"typecheck": "tsc --noEmit" | |
}, | |
"imports": { | |
"#controllers/*": "./app/controllers/*.js", | |
"#exceptions/*": "./app/exceptions/*.js", | |
"#models/*": "./app/models/*.js", | |
"#mails/*": "./app/mails/*.js", | |
"#services/*": "./app/services/*.js", | |
"#listeners/*": "./app/listeners/*.js", | |
"#events/*": "./app/events/*.js", | |
"#middleware/*": "./app/middleware/*.js", | |
"#validators/*": "./app/validators/*.js", | |
"#providers/*": "./providers/*.js", | |
"#policies/*": "./app/policies/*.js", | |
"#abilities/*": "./app/abilities/*.js", | |
"#database/*": "./database/*.js", | |
"#tests/*": "./tests/*.js", | |
"#start/*": "./start/*.js", | |
"#config/*": "./config/*.js" | |
}, | |
"devDependencies": { | |
"@adonisjs/assembler": "^7.5.2", | |
"@adonisjs/eslint-config": "^1.3.0", | |
"@adonisjs/prettier-config": "^1.3.0", | |
"@adonisjs/tsconfig": "^1.3.0", | |
"@japa/assert": "^3.0.0", | |
"@japa/plugin-adonisjs": "^3.0.1", | |
"@japa/runner": "^3.1.4", | |
"@swc/core": "^1.5.3", | |
"@types/luxon": "^3.4.2", | |
"@types/node": "^20.12.10", | |
"eslint": "^8.57.0", | |
"hot-hook": "^0.2.5", | |
"pino-pretty": "^11.0.0", | |
"prettier": "^3.2.5", | |
"ts-node": "^10.9.2", | |
"typescript": "^5.4.5", | |
"vite": "^5.2.11" | |
}, | |
"dependencies": { | |
"@adonisjs/auth": "^9.2.1", | |
"@adonisjs/core": "^6.9.0", | |
"@adonisjs/lucid": "^20.6.0", | |
"@adonisjs/session": "^7.4.0", | |
"@adonisjs/shield": "^8.1.1", | |
"@adonisjs/static": "^1.1.1", | |
"@adonisjs/vite": "^2.0.2", | |
"@vinejs/vine": "^2.0.0", | |
"edge.js": "^6.0.2", | |
"luxon": "^3.4.4", | |
"mysql2": "^3.9.7", | |
"reflect-metadata": "^0.2.2", | |
"whatsapp-api-js": "^3.0.1", | |
"xstate": "^5.13.0" | |
}, | |
"hotHook": { | |
"boundaries": [ | |
"./app/controllers/**/*.ts", | |
"./app/middleware/*.ts" | |
] | |
}, | |
"eslintConfig": { | |
"extends": "@adonisjs/eslint-config/app" | |
}, | |
"prettier": "@adonisjs/prettier-config" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment