2023-02-13 12:41:30 +00:00
|
|
|
{
|
2023-03-10 09:00:43 +00:00
|
|
|
"name": "metamigo-db",
|
2023-02-13 12:41:30 +00:00
|
|
|
"private": true,
|
|
|
|
|
"version": "0.2.0",
|
|
|
|
|
"main": "build/main/db/src/index.js",
|
|
|
|
|
"author": "Abel Luck <abel@guardianproject.info>",
|
|
|
|
|
"license": "AGPL-3.0-or-later",
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"graphile-migrate": "^1.4.1"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"common": "0.2.5",
|
|
|
|
|
"@babel/core": "7.20.12",
|
|
|
|
|
"@babel/preset-env": "7.20.2",
|
|
|
|
|
"@babel/preset-typescript": "7.18.6",
|
|
|
|
|
"@types/jest": "^29.2.5",
|
|
|
|
|
"eslint": "^8.32.0",
|
|
|
|
|
"jest": "^29.3.1",
|
|
|
|
|
"jest-junit": "^15.0.0",
|
|
|
|
|
"pino-pretty": "^9.1.1",
|
|
|
|
|
"prettier": "^2.8.3",
|
|
|
|
|
"ts-node": "^10.9.1",
|
|
|
|
|
"typedoc": "^0.23.24",
|
|
|
|
|
"typescript": "4.9.4"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "tsc -p tsconfig.json",
|
|
|
|
|
"build-test": "tsc -p tsconfig.json",
|
|
|
|
|
"doc:html": "typedoc src/ --exclude '**/*.test.ts' --exclude '**/*.spec.ts' --name $npm_package_name --readme README.md --target es2019 --mode file --out build/docs",
|
|
|
|
|
"doc": "yarn run doc:html",
|
|
|
|
|
"fix:lint": "eslint src --ext .ts --fix",
|
|
|
|
|
"fix:prettier": "prettier \"src/**/*.ts\" --write",
|
|
|
|
|
"worker": "NODE_ENV=development yarn cli worker",
|
|
|
|
|
"lint:lint": "eslint src --ext .ts",
|
|
|
|
|
"lint:prettier": "prettier \"src/**/*.ts\" --list-different",
|
|
|
|
|
"lint": "npm run lint:lint && npm run lint:prettier",
|
|
|
|
|
"watch:build": "tsc -p tsconfig.json -w"
|
|
|
|
|
}
|
|
|
|
|
}
|