Files
my-links/package.json
2025-04-03 15:46:05 +02:00

124 lines
3.3 KiB
JSON

{
"name": "my-links",
"version": "3.1.1",
"type": "module",
"license": "GPL-3.0-only",
"scripts": {
"start": "node bin/server.js",
"build": "node ace build",
"dev": "node ace serve --hmr",
"test": "node ace test",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write --parser typescript '**/*.{ts,tsx}'",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"release": "release-it",
"generate-icons": "pwa-assets-generator"
},
"imports": {
"#admin/*": "./app/admin/*.js",
"#auth/*": "./app/auth/*.js",
"#collections/*": "./app/collections/*.js",
"#core/*": "./app/core/*.js",
"#favicons/*": "./app/favicons/*.js",
"#home/*": "./app/home/*.js",
"#legal/*": "./app/legal/*.js",
"#links/*": "./app/links/*.js",
"#search/*": "./app/search/*.js",
"#shared_collections/*": "./app/shared_collections/*.js",
"#user/*": "./app/user/*.js",
"#providers/*": "./providers/*.js",
"#database/*": "./database/*.js",
"#tests/*": "./tests/*.js",
"#start/*": "./start/*.js",
"#config/*": "./config/*.js"
},
"devDependencies": {
"@adonisjs/assembler": "^7.8.2",
"@adonisjs/eslint-config": "2.0.0",
"@adonisjs/prettier-config": "^1.4.4",
"@adonisjs/tsconfig": "^1.4.0",
"@faker-js/faker": "^9.6.0",
"@japa/assert": "^4.0.1",
"@japa/plugin-adonisjs": "^4.0.0",
"@japa/runner": "^4.2.0",
"@swc/core": "^1.11.16",
"@types/luxon": "^3.6.0",
"@types/node": "^22.14.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.1",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@vite-pwa/assets-generator": "^1.0.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.23.0",
"hot-hook": "^0.4.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"pino-pretty": "^13.0.0",
"postcss": "^8.5.3",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.5.3",
"release-it": "^18.1.2",
"ts-node-maintained": "^10.9.5",
"typescript": "~5.8.2",
"vite": "^6.2.5"
},
"dependencies": {
"@adonisjs/ally": "^5.1.0",
"@adonisjs/auth": "^9.4.0",
"@adonisjs/core": "^6.17.2",
"@adonisjs/cors": "^2.2.1",
"@adonisjs/inertia": "^3.1.1",
"@adonisjs/lucid": "^21.6.1",
"@adonisjs/session": "^7.5.1",
"@adonisjs/shield": "^8.2.0",
"@adonisjs/static": "^1.1.1",
"@adonisjs/vite": "^4.0.0",
"@inertiajs/react": "^2.0.6",
"@izzyjs/route": "^1.2.0",
"@mantine/core": "^7.17.3",
"@mantine/hooks": "^7.17.3",
"@mantine/spotlight": "^7.17.3",
"@vinejs/vine": "^3.0.1",
"bentocache": "^1.2.1",
"dayjs": "^1.11.13",
"edge.js": "^6.2.1",
"i18next": "^24.2.3",
"knex": "^3.1.0",
"luxon": "^3.6.1",
"node-html-parser": "^7.0.1",
"pg": "^8.14.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hotkeys-hook": "^4.6.1",
"react-i18next": "^15.4.1",
"react-icons": "^5.5.0",
"reflect-metadata": "^0.2.2",
"vite-plugin-pwa": "^1.0.0",
"zustand": "^5.0.3"
},
"hotHook": {
"boundaries": [
"./app/**/controllers/*.ts",
"./app/**/middleware/*.ts"
]
},
"prettier": {
"trailingComma": "es5",
"semi": true,
"singleQuote": true,
"useTabs": true,
"quoteProps": "as-needed",
"bracketSpacing": true,
"arrowParens": "always",
"printWidth": 80
},
"lint-staged": {
"*.js,*.ts,*.jsx,*.tsx": "eslint --cache --fix"
},
"volta": {
"node": "22.11.0"
}
}