mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-03 23:36:21 +02:00
197 lines
4.9 KiB
JSON
197 lines
4.9 KiB
JSON
{
|
|
"name": "@adonisjs/lucid",
|
|
"version": "18.4.2",
|
|
"description": "SQL ORM built on top of Active Record pattern",
|
|
"engines": {
|
|
"node": ">=14.15.4"
|
|
},
|
|
"main": "build/providers/DatabaseProvider.js",
|
|
"files": [
|
|
"build/adonis-typings",
|
|
"build/commands",
|
|
"build/providers",
|
|
"build/src",
|
|
"build/instructions.js",
|
|
"build/templates",
|
|
"build/instructions.md"
|
|
],
|
|
"typings": "./build/adonis-typings/index.d.ts",
|
|
"scripts": {
|
|
"mrm": "mrm --preset=@adonisjs/mrm-preset",
|
|
"pretest": "npm run lint",
|
|
"test:better_sqlite": "sh ./scripts/run-tests.sh better_sqlite",
|
|
"test:sqlite": "sh ./scripts/run-tests.sh sqlite",
|
|
"test:mysql": "sh ./scripts/run-tests.sh mysql",
|
|
"test:mysql_legacy": "sh ./scripts/run-tests.sh mysql_legacy",
|
|
"test:mssql": "sh ./scripts/run-tests.sh mssql",
|
|
"test:pg": "sh ./scripts/run-tests.sh pg",
|
|
"test:docker": "npm run test:mysql && npm run test:mysql_legacy && npm run test:pg && npm run test:mssql",
|
|
"lint": "eslint . --ext=.ts",
|
|
"clean": "del-cli build",
|
|
"compile": "npm run lint && npm run clean && tsc && npm run copyfiles",
|
|
"copyfiles": "copyfiles \"templates/**/*.txt\" \"instructions.md\" build",
|
|
"build": "npm run compile",
|
|
"commit": "git-cz",
|
|
"release": "np --message=\"chore(release): %s\"",
|
|
"version": "npm run build",
|
|
"sync-labels": "github-label-sync --labels ./node_modules/@adonisjs/mrm-preset/gh-labels.json adonisjs/lucid",
|
|
"format": "prettier --write .",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/adonisjs/lucid.git"
|
|
},
|
|
"author": "virk,adonisjs",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/adonisjs/lucid/issues"
|
|
},
|
|
"homepage": "https://github.com/adonisjs/lucid#readme",
|
|
"dependencies": {
|
|
"@faker-js/faker": "^8.0.1",
|
|
"@poppinss/hooks": "^5.0.3",
|
|
"@poppinss/utils": "^5.0.0",
|
|
"fast-deep-equal": "^3.1.3",
|
|
"igniculus": "^1.5.0",
|
|
"knex": "^2.4.2",
|
|
"knex-dynamic-connection": "^3.0.1",
|
|
"luxon": "^3.3.0",
|
|
"macroable": "^7.0.2",
|
|
"pretty-hrtime": "^1.0.3",
|
|
"qs": "^6.11.2",
|
|
"slash": "^3.0.0",
|
|
"tarn": "^3.0.2"
|
|
},
|
|
"peerDependencies": {
|
|
"@adonisjs/core": "^5.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@adonisjs/ace": "^11.3.1",
|
|
"@adonisjs/core": "^5.9.0",
|
|
"@adonisjs/mrm-preset": "^5.0.3",
|
|
"@adonisjs/repl": "^3.1.11",
|
|
"@adonisjs/require-ts": "^2.0.13",
|
|
"@adonisjs/sink": "^5.4.3",
|
|
"@adonisjs/validator": "^12.4.2",
|
|
"@japa/assert": "^1.4.1",
|
|
"@japa/run-failed-tests": "^1.1.1",
|
|
"@japa/runner": "^2.5.1",
|
|
"@japa/spec-reporter": "^1.3.3",
|
|
"@poppinss/dev-utils": "^2.0.3",
|
|
"@types/luxon": "^3.3.0",
|
|
"@types/node": "^20.2.3",
|
|
"@types/pluralize": "0.0.29",
|
|
"@types/qs": "^6.9.7",
|
|
"better-sqlite3": "^8.4.0",
|
|
"chance": "^1.1.11",
|
|
"commitizen": "^4.3.0",
|
|
"copyfiles": "^2.4.1",
|
|
"cross-env": "^7.0.3",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"del-cli": "^5.0.0",
|
|
"dotenv": "^16.0.3",
|
|
"eslint": "^8.41.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-adonis": "^2.1.1",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"fs-extra": "^11.1.1",
|
|
"github-label-sync": "^2.3.1",
|
|
"husky": "^8.0.3",
|
|
"mrm": "^4.1.14",
|
|
"mysql2": "^3.3.1",
|
|
"np": "^7.7.0",
|
|
"pg": "^8.11.0",
|
|
"prettier": "^2.8.8",
|
|
"reflect-metadata": "^0.1.13",
|
|
"sqlite3": "^5.1.6",
|
|
"tedious": "^16.1.0",
|
|
"typescript": "4.8.4"
|
|
},
|
|
"publishConfig": {
|
|
"tag": "latest",
|
|
"access": "public"
|
|
},
|
|
"nyc": {
|
|
"exclude": [
|
|
"test"
|
|
],
|
|
"extension": [
|
|
".ts"
|
|
]
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "cz-conventional-changelog"
|
|
}
|
|
},
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"keywords": [],
|
|
"adonisjs": {
|
|
"instructions": "./build/instructions.js",
|
|
"instructionsMd": "./build/instructions.md",
|
|
"types": "@adonisjs/lucid",
|
|
"providers": [
|
|
"@adonisjs/lucid"
|
|
],
|
|
"commands": [
|
|
"@adonisjs/lucid/build/commands"
|
|
],
|
|
"templates": {
|
|
"database": [
|
|
"factories/index.txt"
|
|
]
|
|
}
|
|
},
|
|
"np": {
|
|
"contents": ".",
|
|
"anyBranch": false,
|
|
"yolo": true
|
|
},
|
|
"mrmConfig": {
|
|
"core": true,
|
|
"license": "MIT",
|
|
"services": [
|
|
"github-actions"
|
|
],
|
|
"minNodeVersion": "14.15.4",
|
|
"probotApps": [
|
|
"stale",
|
|
"lock"
|
|
],
|
|
"runGhActionsOnWindows": false
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"plugin:adonis/typescriptPackage",
|
|
"prettier"
|
|
],
|
|
"plugins": [
|
|
"prettier"
|
|
],
|
|
"rules": {
|
|
"prettier/prettier": [
|
|
"error",
|
|
{
|
|
"endOfLine": "auto"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"eslintIgnore": [
|
|
"build"
|
|
],
|
|
"prettier": {
|
|
"trailingComma": "es5",
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"useTabs": false,
|
|
"quoteProps": "consistent",
|
|
"bracketSpacing": true,
|
|
"arrowParens": "always",
|
|
"printWidth": 100
|
|
}
|
|
}
|