expressCart/package.json

81 lines
2.0 KiB
JSON
Raw Normal View History

2018-01-07 04:55:48 +10:00
{
"name": "express-cart",
2018-02-06 01:52:48 +10:00
"version": "1.1.3",
2018-02-05 07:42:06 +10:00
"description": "A fully functioning Node.js shopping cart with Stripe, PayPal and Authorize.net payments.",
2018-01-08 07:14:22 +10:00
"private": false,
2018-01-07 04:55:48 +10:00
"scripts": {
"start": "node app.js",
2018-01-07 05:35:49 +10:00
"deploy": "gulp deploy"
2018-01-07 04:55:48 +10:00
},
"dependencies": {
2018-01-11 06:20:52 +10:00
"ajv": "^6.0.0",
2018-01-07 04:55:48 +10:00
"async": "^2.6.0",
2018-02-05 07:39:42 +10:00
"axios": "^0.17.1",
2018-01-07 04:55:48 +10:00
"bcrypt-nodejs": "0.0.3",
2018-02-04 22:04:32 +10:00
"bcryptjs": "^2.4.3",
2018-01-07 04:55:48 +10:00
"body-parser": "^1.17.2",
"cheerio": "^0.22.0",
"colors": "^1.1.2",
"connect-mongodb-session": "^1.3.0",
"cookie-parser": "^1.4.3",
"express": "^4.15.3",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.3",
"glob": "^7.1.2",
"helmet": "^3.6.1",
"html-entities": "^1.2.0",
"lodash": "^4.13.1",
"lunr": "^2.1.5",
"moment": "^2.15.2",
"mongodb": "^3.0.1",
2018-01-11 06:20:52 +10:00
"mongodb-uri": "^0.9.7",
2018-01-07 04:55:48 +10:00
"morgan": "^1.9.0",
"multer": "^1.1.0",
"nodemailer": "^4.4.1",
"numeral": "^2.0.6",
"paypal-rest-sdk": "^1.6.9",
2018-01-22 07:20:33 +10:00
"rand-token": "^0.4.0",
2018-01-07 04:55:48 +10:00
"rimraf": "^2.6.2",
"sitemap": "^1.6.0",
2018-02-05 07:39:42 +10:00
"strip-bom": "^3.0.0",
2018-01-07 04:55:48 +10:00
"stripe": "^5.4.0",
"uglifycss": "0.0.27"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"gulp": "latest",
"gulp-clean-css": "^3.9.2",
"gulp-minify": "^2.1.0",
2018-02-04 05:13:14 +10:00
"gulp-rename": "^1.2.2",
"run-sequence": "^2.2.1"
2018-01-07 04:55:48 +10:00
},
"main": "app.js",
"keywords": [
"Shopping cart",
"express",
"mongodb",
"nodejs",
"ecommerce",
"paypal",
"lunr",
"cart",
"shopping"
],
"author": "Mark Moffat",
2018-02-04 05:13:14 +10:00
"homepage": "https://expresscart.markmoffat.com",
"repository": {
"type": "git",
"url": "git+https://github.com/mrvautin/expressCart.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/mrvautin/expressCart/issues"
}
2018-01-07 04:55:48 +10:00
}