-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 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
{
"name": "sfcc-product-search-proxy",
"version": "0.1.0",
"private": true,
"engines": {
"node": "=10.15.1",
"npm": ">=6.8.0"
},
"scripts": {
"deploy": "cdk deploy",
"start": "node ./bin/www",
"test": "tsc && ava test/endpoints/*.spec.js",
"build": "tsc & zip -r dist.zip src/* node_modules/*",
"watch": "NODE_ENV=development nodemon ./bin/www",
"debug": "NODE_ENV=development nodemon --inspect ./bin/www"
},
"devDependencies": {
"@aws-cdk/aws-apigateway": "^1.18.0",
"@aws-cdk/aws-certificatemanager": "^1.18.0",
"@aws-cdk/aws-iam": "^1.18.0",
"@aws-cdk/aws-lambda": "^1.18.0",
"@aws-cdk/core": "^1.18.0",
"@types/debug": "^4.1.5",
"@types/mocha": "^5.2.6",
"@types/node": "^12.12.14",
"@types/nock": "^9.3.1",
"ava": "1.0.0-beta.7",
"zip": "^1.2.0"
},
"dependencies": {
"aws-cdk": "^1.18.0",
"body-parser": "^1.19.0",
"btoa": "^1.2.1",
"chai": "^4.1.2",
"commonjs": "0.0.1",
"cors": "^2.8.5",
"debug": "^4.1.1",
"express": "~4.16.1",
"express-validation": "^1.0.3",
"joi": "^14.3.1",
"lodash": "^4.17.15",
"nock": "^10.0.6",
"nodemon": "^2.0.1",
"request": "^2.88.0",
"serverless-http": "^2.3.0",
"sha256-file": "^1.0.0",
"ts-loader": "^5.3.3",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
}
}