sandbox/package.json
Yongmin Hong 01e6487932
npm: use shared prettier config
Summary:
Shared config testbed, yeah.

Signed-off-by: Yongmin Hong <revi@omglol.email>

Test Plan: `npm run p:c .` should run as it is.

Reviewers: O1 revi & automations, revi

Reviewed By: O1 revi & automations, revi

Differential Revision: https://issuetracker.revi.xyz/D305
2024-06-14 17:24:13 +09:00

19 lines
418 B
JSON

{
"$schema": "https://json.schemastore.org/package.json",
"name": "@revi/scripts",
"private": true,
"devDependencies": {
"@revi/prettier-config": "^0.0.1",
"csslint": "^1.0.5",
"jshint": "^2.13.6",
"prettier": "^3.3.1"
},
"scripts": {
"p:c": "prettier --check",
"p:w": "prettier --write"
},
"prettier": "@revi/prettier-config",
"workspaces": [
"npm/prettier-config"
]
}