* Added local tooling config files to the tooling/ directory * Moved as many docker-related files as possible * Updated dockerfile path * Updated the correct dockerfile instead how about * Off day - jeez louise * Juggled around some more dockerfiles * more dockerfile * More docker tests * it's docker time * One more shot
13 lines
714 B
JSON
13 lines
714 B
JSON
{
|
|
"description": "Prettier is used for linting of all files so this package has to live in the root of the project. Use the other package.json files for dependencies. Also, look into making this global or something to remove the need for this file.",
|
|
"devDependencies": {
|
|
"prettier": "3.2.4",
|
|
"sqleton": "^2.2.0"
|
|
},
|
|
"scripts": {
|
|
"create-erd": "sqleton -o priv/repo/erd.png priv/repo/pinchflat_dev.db",
|
|
"lint:check": "prettier . --check --config=tooling/.prettierrc.js --ignore-path=tooling/.prettierignore --ignore-path=.gitignore",
|
|
"lint:fix": "prettier . --write --config=tooling/.prettierrc.js --ignore-path=tooling/.prettierignore --ignore-path=.gitignore"
|
|
},
|
|
"private": true
|
|
}
|