Files
directus/package.json
Rijk van Zanten 6a3eb823c3 Update base theme of the App (#11952)
* Add migration to remove default value from project_color

* Upgrade the default theme

* Do a pass over the header buttons

* Do another pass over --warning uses

* Little things

* Tweak smoke

* Use updated map

* Use dark system elements in dark mode

* Remove outdated files, update toasts

* Use correct delete button style for role

* Use primary for created point

* Tweak spacing in revisions section

* Use primary for sidebar sections

* Various color tweaks and changes

* Update base color palette

* Update "css reset" code

* Remove splashscreens, add default favicon

* Add primary highlight to datamodel page

* dark mode color update

* fix sign out hover color

* Does this help?!

* This fixes some loading issues

Fixes https://github.com/directus/directus/issues/10707

* Calculate default pretty background?

* Fix public view with logo

* Fix responsiveness of login page

* adjust notification group width to be equal

* Do an absolute pointless task that doesn't do anything

It was suggested that it could fix the stylelint error in tests, but alas

* Remove stylelint

Doesn't seem to play nice with script setup and other changes

Co-authored-by: Ben Haynes <ben@rngr.org>
2022-03-04 18:53:39 -05:00

77 lines
2.0 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 .",
"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"
}
}