-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 864 Bytes
/
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
{
"name": "tgtg-notifier",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "eslint --fix . && prettier --write .",
"build": "zip -r archive.zip .",
"test": "jest --coverage",
"offline": "serverless offline --stage localhost",
"deploy": "serverless deploy --stage dev"
},
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.868.0",
"axios": "^0.21.1",
"jsonwebtoken": "^8.5.1",
"log4js": "^6.3.0"
},
"devDependencies": {
"dotenv": "^8.2.0",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"serverless-offline": "^6.9.0",
"serverless-plugin-optimize": "^4.2.1-rc.1"
}
}