-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.59 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.59 KB
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
{
"name": "souq-api",
"version": "1.0.0",
"description": "Headless Microservice api for the Souq eCommerce platform",
"main": "handler.js",
"scripts": {
"deploy:env": "sls deploy --stage $NODE_ENV",
"deploy": "export NODE_ENV=dev && npm run deploy:env",
"deploy:prod": "export NODE_ENV=prod && npm run deploy:env",
"lint": "eslint ./functions ./tests",
"serve": "serverless offline start",
"test": "mocha --opts mocha.opts"
},
"author": "Mark Pace<[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mkpace/souq.git"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-source-map-support": "^1.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1",
"copy-webpack-plugin": "^4.5.2",
"eslint": "^5.2.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"path": "^0.12.7",
"serverless-offline": "^3.25.6",
"serverless-s3-sync": "^1.6.1",
"serverless-webpack": "^5.1.0",
"webpack": "^4.16.3",
"webpack-node-externals": "^1.6.0",
"yenv": "^2.1.0"
},
"dependencies": {
"acl": "^0.4.11",
"aws-sdk": "^2.285.1",
"axios": "^0.18.0",
"babel-runtime": "^6.26.0",
"bcryptjs": "^2.4.3",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"body-parser-xml": "^1.1.0",
"chai": "^4.2.0",
"child_process": "^1.0.2",
"composable-middleware": "^0.3.0",
"cors": "^2.8.4",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"express-validator": "^5.3.0",
"file-type": "^9.0.0",
"fs": "0.0.1-security",
"googleapis": "^32.0.0",
"handlebars": "^4.0.12",
"js-base64": "^2.4.9",
"js-yaml": "^3.12.0",
"json2csv": "^4.2.1",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.10",
"mocha": "^5.2.0",
"moment": "^2.22.2",
"mongoose": "^5.2.5",
"nodemailer": "^4.6.7",
"nodemailer-mailgun-transport": "^1.4.0",
"nodemailer-stub": "^1.0.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"readline": "^1.3.0",
"save": "^2.3.2",
"serverless-http": "^1.6.0",
"sha1": "^1.1.1",
"source-map-support": "^0.4.18",
"supertest": "^3.3.0",
"url-match": "^0.1.0",
"validator": "^10.4.0",
"winston": "^3.1.0",
"woocommerce-api": "^1.4.2",
"xml2js": "^0.4.19"
}
}