mirror of
https://github.com/directus/directus.git
synced 2026-01-23 13:37:58 -05:00
Bumps [ts-node](https://github.com/TypeStrong/ts-node) from 9.1.1 to 10.0.0. - [Release notes](https://github.com/TypeStrong/ts-node/releases) - [Commits](https://github.com/TypeStrong/ts-node/compare/v9.1.1...v10.0.0) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
74 lines
2.2 KiB
JSON
74 lines
2.2 KiB
JSON
{
|
|
"name": "directus-monorepo",
|
|
"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}\"",
|
|
"dev": "lerna run dev --stream --parallel",
|
|
"build": "lerna run build",
|
|
"release": "lerna publish --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 DIRECTUS_DEV=true NODE_ENV=development DOTENV_CONFIG_PATH=api/.env ts-node -r dotenv/config --script-mode --transpile-only api/src/cli/index.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/changelog-github": "^0.4.0",
|
|
"@changesets/cli": "^2.16.0",
|
|
"@types/dockerode": "^3.2.3",
|
|
"@types/jest": "^26.0.22",
|
|
"@types/listr": "^0.14.3",
|
|
"@types/node": "^15.6.0",
|
|
"@types/supertest": "^2.0.11",
|
|
"@typescript-eslint/eslint-plugin": "^4.25.0",
|
|
"@typescript-eslint/parser": "^4.23.0",
|
|
"axios": "^0.21.1",
|
|
"dockerode": "^3.3.0",
|
|
"eslint": "^7.26.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-prettier": "^3.4.0",
|
|
"eslint-plugin-prettier-vue": "^3.0.0",
|
|
"eslint-plugin-vue": "^7.8.0",
|
|
"globby": "^11.0.3",
|
|
"jest": "^26.6.3",
|
|
"knex": "^0.95.6",
|
|
"lerna": "^4.0.0",
|
|
"lint-staged": "^10.5.4",
|
|
"listr": "^0.14.3",
|
|
"mysql": "^2.18.1",
|
|
"nanoid": "^3.1.23",
|
|
"npm-run-all": "^4.1.5",
|
|
"oracledb": "^5.1.0",
|
|
"pg": "^8.6.0",
|
|
"prettier": "^2.3.0",
|
|
"simple-git-hooks": "^2.4.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.19.0",
|
|
"supertest": "^6.1.3",
|
|
"tedious": "^11.0.8",
|
|
"ts-jest": "^26.5.6",
|
|
"ts-node": "^10.0.0"
|
|
},
|
|
"simple-git-hooks": {
|
|
"pre-commit": "npx lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,ts,vue}": "eslint --fix",
|
|
"*.md": "prettier --write",
|
|
"*.{css,scss,vue}": "stylelint --fix"
|
|
}
|
|
}
|