package.json — react Source File
Architecture documentation for package.json, a json file in the react codebase.
Entity Profile
Source Code
{
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"jest": "^29.4.1"
},
"jest": {
"setupFilesAfterEnv": [
"./setupTests.js"
]
},
"scripts": {
"install-all": "cd react-14 && yarn && cd ../react-15 && yarn && cd ../react-16 && yarn && cd ../react-17 && yarn && cd ..",
"lint": "node lint-runtimes.js",
"pretest": "yarn install-all && yarn lint",
"test-jsxdev-dev": "BABEL_ENV=development NODE_ENV=development jest --env=jsdom",
"test-jsx-dev": "BABEL_ENV=production NODE_ENV=development jest --env=jsdom",
"test-jsx-prod": "BABEL_ENV=production NODE_ENV=production jest --env=jsdom",
"test": "yarn test-jsxdev-dev && yarn test-jsx-dev && yarn test-jsx-prod"
}
}
Source
Frequently Asked Questions
What does package.json do?
package.json is a source file in the react codebase, written in json.
Where is package.json in the architecture?
package.json is located at fixtures/legacy-jsx-runtimes/package.json (directory: fixtures/legacy-jsx-runtimes).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free