Files
my-links/package.json

117 lines
3.2 KiB
JSON

{
"name": "my-links",
"version": "1.3.0",
"private": true,
"type": "module",
"license": "UNLICENSED",
"scripts": {
"start": "node bin/server.js",
"build": "node ace build",
"dev": "node ace serve --watch",
"test": "node ace test",
"lint": "eslint .",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"imports": {
"#controllers/*": "./app/controllers/*.js",
"#exceptions/*": "./app/exceptions/*.js",
"#models/*": "./app/models/*.js",
"#constants/*": "./app/constants/*.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.1",
"@adonisjs/eslint-config": "^1.3.0",
"@adonisjs/tsconfig": "^1.3.0",
"@emotion/babel-plugin": "^11.11.0",
"@faker-js/faker": "^8.4.1",
"@japa/assert": "^3.0.0",
"@japa/plugin-adonisjs": "^3.0.1",
"@japa/runner": "^3.1.4",
"@swc/core": "^1.4.16",
"@types/luxon": "^3.4.2",
"@types/node": "^20.12.7",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.8",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"hot-hook": "^0.2.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"pino-pretty": "^11.0.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"vite": "^5.2.10"
},
"dependencies": {
"@adonisjs/ally": "^5.0.2",
"@adonisjs/auth": "^9.2.0",
"@adonisjs/core": "^6.8.0",
"@adonisjs/cors": "^2.2.1",
"@adonisjs/inertia": "1.0.0-25",
"@adonisjs/lucid": "^20.5.1",
"@adonisjs/session": "^7.4.0",
"@adonisjs/shield": "^8.1.1",
"@adonisjs/static": "^1.1.1",
"@adonisjs/vite": "^3.0.0-11",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@inertiajs/react": "^1.0.16",
"@izzyjs/route": "^1.1.0-0",
"@vinejs/vine": "^2.0.0",
"edge.js": "^6.0.2",
"i18next": "^23.11.3",
"luxon": "^3.4.4",
"node-html-parser": "^6.1.13",
"pg": "^8.11.5",
"react": "^18.3.1",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.3.1",
"react-hotkeys-hook": "^4.5.0",
"react-i18next": "^14.1.1",
"react-icons": "^5.1.0",
"react-swipeable": "^7.0.1",
"reflect-metadata": "^0.2.2",
"uuid": "^9.0.1"
},
"hotHook": {
"boundaries": [
"./app/controllers/**/*.ts",
"./app/middleware/*.ts"
]
},
"eslintConfig": {
"extends": "@adonisjs/eslint-config/app"
},
"prettier": {
"trailingComma": "es5",
"semi": true,
"singleQuote": true,
"useTabs": false,
"quoteProps": "as-needed",
"bracketSpacing": true,
"arrowParens": "always",
"printWidth": 80
},
"lint-staged": {
"*.js,*.ts,*.jsx,*.tsx": "eslint --cache --fix"
}
}