source tree에서 node_modules는 해당프로젝트에대한 라이브러리가 저장되어 있는 곳이다.
package.json에서 해당 라이브러리가 뭐가 설치되어있는지 확인이 가능하다.

/*package.json*/
"dependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"web-vitals": "^1.1.2"
}