Skip to content

Instantly share code, notes, and snippets.

@Rafi993
Last active December 26, 2016 06:39
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 Rafi993/e851055a7cfae07fbbd60e5fac0bf863 to your computer and use it in GitHub Desktop.
Save Rafi993/e851055a7cfae07fbbd60e5fac0bf863 to your computer and use it in GitHub Desktop.
porting sailsjs application to expressjs
{
"name": "sailslike",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node app.js",
"dev": "node ./node_modules/nodemon/bin/nodemon app.js",
"build": "node ./node_modules/webpack/bin/webpack app.js",
"prod": "node ./node_modules/ app.js && node ./node_modules/bin/pm2 start ./build/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.15.2",
"command-line-args": "^3.0.4",
"connect": "^3.5.0",
"cors": "^2.8.1",
"express": "^4.14.0",
"fs-extra": "^1.0.0",
"jsonwebtoken": "^7.2.1",
"ramda": "^0.22.1",
"sails-mongo": "^0.12.2",
"waterline": "^0.11.6"
},
"devDependencies": {
"nodemon": "^1.11.0",
"pm2": "^2.2.2",
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment