-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.05 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
{
"name": "nice-2-meet-u",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "yarn tsc",
"ngrok": "ngrok http 4000",
"start": "serverless offline start --httpPort 4000 --location .webpack/service",
"deploy": "SLS_DEBUG=* serverless deploy --stage $STAGE -v",
"lint": "eslint 'src/**/*.ts' --max-warnings=0 -c .eslintrc"
},
"dependencies": {
"@slack/web-api": "^5.12.0",
"axios": "^0.19.2"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.62",
"@types/node": "^14.11.1",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"aws-sdk": "^2.756.0",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"serverless": "^2.1.1",
"serverless-offline": "^6.7.0",
"serverless-prune-plugin": "^1.4.3",
"serverless-webpack": "^5.3.5",
"typescript": "^4.0.3",
"webpack": "^4.44.2"
}
}