Skip to content

Instantly share code, notes, and snippets.

@kschingiz
Last active December 26, 2019 09:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kschingiz/32d2e28155bdb5fa6f65e2d630e9efb0 to your computer and use it in GitHub Desktop.
Save kschingiz/32d2e28155bdb5fa6f65e2d630e9efb0 to your computer and use it in GitHub Desktop.
{
"name": "me:my-package",
"version": "package-version",
"private": true,
"scripts": {
},
"dependencies": {
// meteor packages start with "meteor/" prefix
"meteor/underscore": "1.0.0",
// plain npm package
"express": "1.0.0"
},
"devDependencies": {
// dev dependencies declared the same way as prod deps
},
"meteor": {
"mainModule": {
"client": "startup/client/main.jsx",
"server": "startup/server/main.js"
},
"testModule": "tests/main.js",
"assets": [
"assets/*"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment