-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.42 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
{
"name": "sopt-push-notification",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --build",
"clean": "tsc --build --clean",
"watch": "tsc -w",
"lint": "eslint .",
"format": "prettier --write .",
"start": "serverless offline start",
"deploy:dev": "npm run clean && npm run build && NODE_ENV=dev sls deploy --stage dev",
"deploy:prod": "npm run clean && npm run build && NODE_ENV=prod sls deploy --stage prod"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/aws-sdk": "0.0.42",
"@types/lodash": "^4.14.195",
"@types/node": "^7.0.5",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"cross-env": "^7.0.3",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"serverless-offline": "^12.0.4",
"tslint": "^5.5.0",
"tslint-config-standard": "^6.0.1",
"typescript": "^5.1.0"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.350.0",
"@aws-sdk/client-lambda": "^3.350.0",
"@aws-sdk/client-sns": "^3.350.0",
"@types/aws-lambda": "^8.10.119",
"aws-lambda": "^1.0.7",
"dayjs": "^1.11.8",
"loadsh": "^0.0.4",
"serverless": "^3.32.2",
"uuid": "^9.0.1"
}
}