NodeとHerokuの初心者です。
このリンク https://devcenter.heroku.com/articles/nodejsを調べていたところ、「 Declare Dependencies With NPM 」というセクションがあります。
{
"name": "node-example",
"version": "0.0.1",
"dependencies": {
"express": "2.5.x"
},
"engines": {
"node": "0.8.x"
}
}
このセクションで理解できなかったのは、package.json ファイルをどこに保管すればよいかということです。また、依存関係をローカルにインストールする方法
ありがとうアミット