Files
directus/package.json
renovate[bot] 341691bfe7 Update dependency lint-staged to v11.2.0 (#8530)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-10-04 09:34:10 -04:00

81 lines
2.2 KiB
JSON

{
"name": "directus-monorepo",
"private": true,
"workspaces": [
"./app",
"./api",
"./docs",
"./packages/*"
],
"scripts": {
"lint": "npm-run-all --parallel --continue-on-error lint:*",
"lint:eslint": "eslint .",
"lint:stylelint": "stylelint \"**/*.{css,scss,vue}\"",
"format": "prettier --write \"**/*.{js,ts,vue,md,yaml}\"",
"dev": "lerna run dev --stream --parallel",
"build": "lerna run build",
"pack": "node docker/pack",
"release": "lerna version --force-publish --exact",
"test": "lerna run test",
"test:e2e": "jest tests -c tests/jest.config.js",
"test:e2e:watch": "npm run test:e2e -- --watch",
"posttest:e2e:watch": "ts-node --project ./tests/tsconfig.json --transpile-only ./tests/setup/teardown.ts",
"cli": "cross-env NODE_ENV=development SERVE_APP=false DOTENV_CONFIG_PATH=api/.env ts-node -r dotenv/config --script-mode --transpile-only api/src/cli/run.ts"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"devDependencies": {
"@types/dockerode": "3.2.7",
"@types/jest": "27.0.2",
"@types/listr": "0.14.4",
"@types/node": "15.12.2",
"@types/supertest": "2.0.11",
"@typescript-eslint/eslint-plugin": "4.32.0",
"@typescript-eslint/parser": "4.32.0",
"axios": "0.22.0",
"dockerode": "3.3.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-vue": "7.18.0",
"globby": "11.0.4",
"jest": "27.2.4",
"knex": "0.95.11",
"lerna": "4.0.0",
"lint-staged": "11.2.0",
"listr": "0.14.3",
"mysql": "2.18.1",
"nanoid": "3.1.28",
"npm-run-all": "4.1.5",
"oracledb": "5.2.0",
"pg": "8.7.1",
"prettier": "2.4.1",
"simple-git-hooks": "2.6.1",
"sqlite3": "5.0.2",
"stylelint": "13.13.1",
"stylelint-config-prettier": "8.0.2",
"stylelint-config-rational-order": "0.1.2",
"stylelint-config-standard": "22.0.0",
"stylelint-order": "4.1.0",
"stylelint-scss": "3.21.0",
"supertest": "6.1.6",
"tedious": "13.0.4",
"ts-jest": "27.0.5",
"ts-node": "10.2.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix",
"*.{md,yaml}": "prettier --write",
"*.{css,scss,vue}": "stylelint --fix"
},
"volta": {
"node": "16.5.0",
"npm": "7.24.1"
}
}