{ "name": "directus-monorepo", "private": true, "workspaces": [ "./app", "./api", "./docs", "./packages/*" ], "scripts": { "lint": "npm-run-all --parallel --continue-on-error lint:*", "lint:eslint": "eslint .", "format": "prettier --write \"**/*.{js,ts,vue,md,yaml}\"", "dev": "lerna run dev --stream --parallel", "build": "lerna run build", "build:api": "lerna run build --ignore @directus/app", "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.3.0", "@types/faker": "5.5.9", "@types/jest": "27.4.1", "@types/listr": "0.14.4", "@types/node": "16.11.9", "@types/supertest": "2.0.11", "@typescript-eslint/eslint-plugin": "5.4.0", "@typescript-eslint/parser": "5.4.0", "axios": "0.24.0", "dockerode": "3.3.1", "eslint": "8.3.0", "eslint-config-prettier": "8.3.0", "eslint-plugin-prettier": "4.0.0", "eslint-plugin-vue": "7.20.0", "faker": "5.5.3", "globby": "11.0.4", "jest": "27.5.1", "knex": "0.95.15", "lerna": "4.0.0", "lint-staged": "11.2.6", "listr": "0.14.3", "mysql": "2.18.1", "nanoid": "3.1.30", "npm-run-all": "4.1.5", "oracledb": "5.3.0", "pg": "8.7.1", "postcss": "^8.4.7", "prettier": "2.4.1", "simple-git-hooks": "2.7.0", "sqlite3": "5.0.2", "supertest": "6.1.6", "tedious": "13.2.0", "ts-jest": "27.1.3", "ts-node": "10.4.0" }, "simple-git-hooks": { "pre-commit": "npx lint-staged" }, "lint-staged": { "*.{js,ts,vue}": "eslint --fix", "*.{md,yaml}": "prettier --write" }, "volta": { "node": "16.13.2", "npm": "8.1.4" } }