mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
Bumps [prettier](https://github.com/prettier/prettier) from 2.8.8 to 3.0.3. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.8.8...3.0.3) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"name": "node-postgres",
|
|
"description": "node postgres monorepo",
|
|
"main": "index.js",
|
|
"private": true,
|
|
"repository": "git@github.com:brianc/node-postgres.git",
|
|
"author": "Brian M. Carlson <brian.m.carlson@gmail.com>",
|
|
"license": "MIT",
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"test": "yarn lerna exec yarn test",
|
|
"build": "tsc --build",
|
|
"build:watch": "tsc --build --watch",
|
|
"docs:build": "cd docs && yarn build",
|
|
"docs:start": "cd docs && yarn start",
|
|
"pretest": "yarn build",
|
|
"prepublish": "yarn build",
|
|
"lint": "eslint '*/**/*.{js,ts,tsx}'"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^4.4.0",
|
|
"@typescript-eslint/parser": "^4.4.0",
|
|
"eslint": "^7.11.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"lerna": "^3.19.0",
|
|
"prettier": "3.0.3",
|
|
"typescript": "^4.0.3"
|
|
},
|
|
"prettier": {
|
|
"semi": false,
|
|
"printWidth": 120,
|
|
"arrowParens": "always",
|
|
"trailingComma": "es5",
|
|
"singleQuote": true
|
|
}
|
|
}
|