-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.25 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
{
"name": "simple-sell",
"scripts": {
"build": "tsc",
"deploy": "npm run build && sls deploy",
"pretest": "npm run local:dynamodb:start",
"test": "NODE_ENV=test IS_OFFLINE=true jest --runInBand --detectOpenHandles",
"posttest": "npm run local:dynamodb:stop",
"test:watch": "npm run test -- --watch",
"local:dynamodb:start": "./scripts/start-local-dynamodb.sh",
"local:dynamodb:stop": "./scripts/stop-local-dynamodb.sh",
"local": "npm run build && serverless offline start"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.554.0",
"@aws-sdk/client-s3": "^3.554.0",
"@aws-sdk/client-ses": "^3.554.0",
"@aws-sdk/lib-dynamodb": "^3.554.0",
"google-spreadsheet": "^3.0.11",
"node-fetch": "^2.6.1",
"stripe": "^8.39.2",
"uuid": "^7.0.3"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.47",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.0",
"@types/node-fetch": "^2.5.5",
"@types/uuid": "^7.0.2",
"@types/yaml": "^1.2.0",
"jest": "^25.3.0",
"serverless": "^3.38.0",
"serverless-domain-manager": "^7.3.8",
"serverless-offline": "^13.3.3",
"serverless-prune-plugin": "^2.0.2",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3",
"yaml": "^1.8.3"
}
}