mirror of
https://github.com/facebook/react.git
synced 2026-02-26 17:05:07 +00:00
This moves prettier formatting into fixture-test-utils instead, so we can remove the dependency on prettier in the babel plugin. I want to do this because I don't want to include prettier in the rolledup artifact when we build the babel plugin.
26 lines
584 B
JSON
26 lines
584 B
JSON
{
|
|
"name": "fixture-test-utils",
|
|
"version": "1.0.0",
|
|
"main": "dist/index.js",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "rimraf dist && tsc",
|
|
"test": "echo 'no tests'",
|
|
"prettier": "prettier --write src"
|
|
},
|
|
"dependencies": {
|
|
"@parcel/watcher": "^2.1.0",
|
|
"chalk": "4",
|
|
"prettier": "2.8.8",
|
|
"readline": "^1.3.0",
|
|
"typescript": "^5.1.0",
|
|
"yargs": "^17.7.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.7.18",
|
|
"@typescript-eslint/eslint-plugin": "^5.51.0",
|
|
"@typescript-eslint/parser": "^5.51.0",
|
|
"rimraf": "^3.0.2"
|
|
}
|
|
}
|