expressCart/package.json

126 lines
3.0 KiB
JSON
Raw Permalink Normal View History

2018-01-07 04:55:48 +10:00
{
"name": "express-cart",
2020-03-20 15:16:05 +10:00
"version": "1.1.17",
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-11-09 15:18:13 +10:00
"test": "ava",
2020-02-01 10:51:37 +10:00
"dev": "gulp watch",
2019-11-03 09:21:44 +10:00
"lint": "eslint ./"
2018-01-07 04:55:48 +10:00
},
2019-11-09 12:14:56 +10:00
"ava": {
"serial": true,
"files": [
"./test/specs/*.js"
2019-11-09 15:18:13 +10:00
],
2019-11-16 09:01:57 +10:00
"timeout": "10s",
2019-11-09 15:18:13 +10:00
"verbose": true,
"environmentVariables": {
"NODE_ENV": "test"
}
2019-11-09 12:14:56 +10:00
},
2019-07-14 17:00:08 +10:00
"engines": {
"node": "10.16.0"
},
2018-01-07 04:55:48 +10:00
"dependencies": {
"@adyen/api-library": "^2.1.7",
2019-10-26 16:50:29 +10:00
"ajv": "^6.10.2",
"ajv-errors": "^1.0.1",
2019-10-26 16:50:29 +10:00
"async": "^2.6.3",
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-10-26 16:50:29 +10:00
"colors": "^1.4.0",
"connect-mongodb-session": "^2.2.0",
2019-05-29 21:04:57 +10:00
"cookie-parser": "^1.4.4",
"countries-list": "^2.5.0",
2020-02-23 13:40:35 +10:00
"csurf": "^1.11.0",
2019-12-16 17:27:45 +10:00
"dotenv": "^8.2.0",
2019-05-29 21:04:57 +10:00
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"express-rate-limit": "^5.0.0",
2019-10-26 16:50:29 +10:00
"express-session": "^1.17.0",
2020-02-01 18:54:11 +10:00
"feather-icons": "^4.25.0",
2019-10-26 11:05:25 +10:00
"glob": "^7.1.5",
2020-03-21 13:33:20 +10:00
"got": "^10.6.0",
"gulp-less": "^4.0.1",
2019-10-26 16:50:29 +10:00
"helmet": "^3.21.2",
2018-01-07 04:55:48 +10:00
"html-entities": "^1.2.0",
"i18n": "^0.8.4",
2019-10-26 16:50:29 +10:00
"lodash": "^4.17.15",
"lunr": "^2.3.8",
2020-01-13 16:41:02 +10:00
"mime-db": "^1.43.0",
2019-02-09 20:54:38 +10:00
"mime-type": "^3.0.7",
2019-11-03 09:26:25 +10:00
"mkdirp": "^0.5.1",
2019-02-09 20:54:38 +10:00
"moment": "^2.24.0",
2019-10-26 16:50:29 +10:00
"mongodb": "^3.3.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",
2019-10-26 16:50:29 +10:00
"multer": "^1.4.2",
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",
"object-hash": "^2.0.1",
2018-01-07 04:55:48 +10:00
"paypal-rest-sdk": "^1.6.9",
2018-01-22 07:20:33 +10:00
"rand-token": "^0.4.0",
2019-10-26 16:50:29 +10:00
"rimraf": "^2.7.1",
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",
2020-01-23 20:58:21 +10:00
"string-strip-html": "^4.3.14",
2018-02-05 07:39:42 +10:00
"strip-bom": "^3.0.0",
"stripe": "^7.12.0",
"uglifycss": "0.0.27",
"yenv": "^2.1.1"
2018-01-07 04:55:48 +10:00
},
"devDependencies": {
2019-10-26 16:50:29 +10:00
"ava": "^2.4.0",
2019-12-30 12:48:45 +10:00
"eslint": "^6.8.0",
2019-10-26 16:50:29 +10:00
"eslint-config-standard": "^13.0.1",
2019-12-30 12:48:45 +10:00
"eslint-plugin-extra-rules": "0.0.0-development",
2019-10-26 16:50:29 +10:00
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.2.0",
2019-07-11 15:20:16 +10:00
"eslint-plugin-promise": "^4.2.1",
2019-10-26 16:50:29 +10:00
"eslint-plugin-standard": "^4.0.1",
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",
2020-03-20 15:16:05 +10:00
"gulp-nodemon": "^2.5.0",
2018-10-05 21:57:41 +10:00
"gulp-rename": "^1.4.0",
"less": "^3.10.3",
"supertest": "^4.0.2"
2018-01-07 04:55:48 +10:00
},
"main": "app.js",
"keywords": [
"Shopping cart",
"express",
"mongodb",
"nodejs",
"ecommerce",
"paypal",
"stripe",
2020-03-21 13:33:20 +10:00
"authorize.net",
"blockonomics",
"adyen",
2020-01-01 14:27:42 +10:00
"instore",
2018-01-07 04:55:48 +10:00
"lunr",
"cart",
2020-03-21 13:33:20 +10:00
"shopping",
"payway",
"westpac"
2018-01-07 04:55:48 +10:00
],
"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
}