expressCart/package.json

94 lines
2.3 KiB
JSON
Raw Normal View History

2018-01-07 04:55:48 +10:00
{
"name": "express-cart",
2019-06-13 21:13:39 +10:00
"version": "1.1.12",
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-02-23 03:41:24 +10:00
"deploy": "gulp deploy",
"testdata": "node lib/testdata.js",
2019-06-11 15:12:07 +10:00
"test": "NODE_ENV=test ava --verbose"
2018-01-07 04:55:48 +10:00
},
2019-07-14 17:00:08 +10:00
"engines": {
"node": "10.16.0"
},
2018-01-07 04:55:48 +10:00
"dependencies": {
2019-07-11 15:20:16 +10:00
"ajv": "^6.10.1",
2019-07-14 16:31:00 +10:00
"ajv-keywords": "^3.4.1",
2019-05-29 21:04:57 +10:00
"async": "^2.6.2",
2019-06-01 22:30:26 +10:00
"axios": "^0.19.0",
2018-02-04 22:04:32 +10:00
"bcryptjs": "^2.4.3",
2019-05-29 21:04:57 +10:00
"body-parser": "^1.19.0",
2018-01-07 04:55:48 +10:00
"cheerio": "^0.22.0",
2019-02-09 20:54:38 +10:00
"colors": "^1.3.3",
2018-02-23 03:41:24 +10:00
"connect-mongodb-session": "^1.4.0",
2019-05-29 21:04:57 +10:00
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
2019-07-11 15:20:16 +10:00
"express-session": "^1.16.2",
2019-05-29 21:04:57 +10:00
"helmet": "^3.18.0",
2018-01-07 04:55:48 +10:00
"html-entities": "^1.2.0",
"jsonschema": "^1.2.4",
2019-07-11 15:20:16 +10:00
"lodash": "^4.17.14",
2019-05-29 21:04:57 +10:00
"lunr": "^2.3.6",
"mime-db": "^1.40.0",
2019-02-09 20:54:38 +10:00
"mime-type": "^3.0.7",
"moment": "^2.24.0",
2018-02-23 03:41:24 +10:00
"mongodb": "2.2.3",
2019-07-14 16:31:00 +10:00
"mongodb-uri": "^0.9.7",
2019-02-09 20:54:38 +10:00
"morgan": "^1.9.1",
"multer": "^1.4.1",
2019-05-29 21:04:57 +10:00
"node-cron": "^2.0.3",
2019-02-09 20:54:38 +10:00
"nodemailer": "^4.7.0",
2018-01-07 04:55:48 +10:00
"numeral": "^2.0.6",
"paypal-rest-sdk": "^1.6.9",
2018-01-22 07:20:33 +10:00
"rand-token": "^0.4.0",
2019-02-09 20:54:38 +10:00
"rimraf": "^2.6.3",
2019-05-29 21:04:57 +10:00
"sanitize-html": "^1.20.1",
2018-01-07 04:55:48 +10:00
"sitemap": "^1.6.0",
2018-02-05 07:39:42 +10:00
"strip-bom": "^3.0.0",
2019-02-09 20:54:38 +10:00
"stripe": "^5.10.0",
2018-01-07 04:55:48 +10:00
"uglifycss": "0.0.27"
},
"devDependencies": {
2019-07-11 15:20:16 +10:00
"ava": "^2.2.0",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-standard": "^13.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
2019-07-11 15:35:03 +10:00
"glob": "^7.1.4",
2019-05-29 21:04:57 +10:00
"gulp": "^4.0.2",
2018-10-05 21:57:41 +10:00
"gulp-clean-css": "^3.10.0",
"gulp-minify": "^3.1.0",
"gulp-rename": "^1.4.0",
2019-02-09 20:54:38 +10:00
"supertest": "^3.4.2",
2019-06-11 15:12:07 +10:00
"supertest-session": "^4.0.0",
2018-02-23 03:41:24 +10:00
"wait.for": "^0.6.6"
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"
},
2018-02-06 01:54:34 +10:00
"license": "MIT",
2018-02-04 05:13:14 +10:00
"bugs": {
"url": "https://github.com/mrvautin/expressCart/issues"
}
2018-01-07 04:55:48 +10:00
}