We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Open your package.json and add a postinstall hook to the scriptssection:
postinstall
scripts
{ "name": "my-platform-app", "scripts": { "start": "node index.js", "postinstall": "grunt my-grunt-task" }, "dependencies": { "express": "^4.0.0" } }
A full list of supported hooks can be found here.