-
Notifications
You must be signed in to change notification settings - Fork 875
/
package.json
124 lines (124 loc) · 2.94 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "express-cart",
"version": "1.1.19",
"description": "A fully functioning Node.js shopping cart with Stripe, PayPal and Authorize.net payments.",
"private": false,
"scripts": {
"start": "node app.js",
"deploy": "node deploy.js",
"testdata": "node lib/testdata.js",
"test": "ava",
"dev": " pm2-dev start app.js",
"lint": "eslint ./"
},
"ava": {
"serial": true,
"files": [
"./test/specs/*.js"
],
"timeout": "10s",
"verbose": true,
"environmentVariables": {
"NODE_ENV": "test"
}
},
"engines": {
"node": ">=10.16.0"
},
"dependencies": {
"ajv": "^6.10.2",
"ajv-errors": "^1.0.1",
"async": "^2.6.3",
"axios": "^0.21.1",
"badwords-list": "^1.0.0",
"bcryptjs": "^2.4.3",
"cheerio": "^0.22.0",
"colors": "^1.4.0",
"connect-mongodb-session": "^2.2.0",
"cookie-parser": "^1.4.4",
"countries-list": "^2.5.0",
"csurf": "^1.11.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"express-rate-limit": "^5.0.0",
"express-session": "^1.17.0",
"feather-icons": "^4.25.0",
"glob": "^7.1.5",
"got": "^10.6.0",
"gulp-less": "^4.0.1",
"helmet": "^3.21.2",
"html-entities": "^1.2.0",
"i18n": "^0.8.4",
"lodash": "^4.17.15",
"lunr": "^2.3.8",
"mime-db": "^1.43.0",
"mime-type": "^3.0.7",
"mkdirp": "^0.5.5",
"moment": "^2.24.0",
"mongodb": "^3.3.3",
"mongodb-uri": "^0.9.7",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"node-cron": "^2.0.3",
"nodemailer": "^6.4.16",
"numeral": "^2.0.6",
"object-hash": "^2.0.1",
"paypal-rest-sdk": "^1.6.9",
"rand-token": "^0.4.0",
"rimraf": "^2.7.1",
"sanitize-html": "^2.3.2",
"sitemap": "^1.6.0",
"string-strip-html": "^4.3.14",
"strip-bom": "^3.0.0",
"stripe": "^8.184.0",
"uglifycss": "0.0.27",
"xml-js": "^1.6.11",
"yenv": "^2.1.1"
},
"devDependencies": {
"ava": "^3.13.0",
"clean-css": "^4.2.3",
"eslint": "^6.8.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-extra-rules": "0.0.0-development",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"globby": "^11.0.1",
"less": "^3.12.2",
"pm2": "^4.5.0",
"supertest": "^4.0.2",
"uglify-es": "^3.3.9"
},
"main": "app.js",
"keywords": [
"Shopping cart",
"express",
"mongodb",
"nodejs",
"ecommerce",
"paypal",
"stripe",
"authorize.net",
"blockonomics",
"adyen",
"instore",
"lunr",
"cart",
"shopping",
"payway",
"westpac"
],
"author": "Mark Moffat",
"homepage": "https://expresscart.markmoffat.com",
"repository": {
"type": "git",
"url": "git+https://github.com/mrvautin/expressCart.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mrvautin/expressCart/issues"
}
}