-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.74 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
49
50
51
52
53
54
55
56
{
"name": "cautious-waffle",
"version": "1.0.0",
"description": "Serverless webpack example using Typescript",
"main": "handler.js",
"repository": {
"type": "git",
"url": "https://github.com/shindakun/cautious-waffle"
},
"scripts": {
"lint": "eslint --ext .js,.ts ./",
"lintfix": "eslint --ext .js,.ts ./ --fix",
"test": "jest --detectOpenHandles --maxWorkers=2",
"watch": "jest --watch",
"dev": "concurrently \"IS_OFFLINE=true DEV=true sls offline\" \"sls dynamodb start\"",
"windev2": "concurrently \"sls offline\" \"sls dynamodb start\"",
"windev": "sls offline"
},
"dependencies": {
"@slack/bolt": "^2.0.0",
"@slack/events-api": "^2.3.2",
"@slack/web-api": "^5.8.0",
"aws-sdk": "^2.643.0",
"axios": "^0.19.2",
"bufferutil": "^4.0.1",
"canvas": "^2.6.1",
"concurrently": "^5.1.0",
"dotenv": "^8.2.0",
"serverless": "^1.67.0",
"slack-block-kit": "^0.9.9",
"source-map-support": "^0.5.10",
"utf-8-validate": "^5.0.2"
},
"devDependencies": {
"@slack-wrench/fixtures": "2.1.0",
"@types/aws-lambda": "8.10.50",
"@types/jest": "25.2.1",
"@types/node": "10.17.21",
"@typescript-eslint/eslint-plugin": "2.28.0",
"@typescript-eslint/parser": "2.28.0",
"eslint": "6.8.0",
"fork-ts-checker-webpack-plugin": "4.1.3",
"jest": "25.3.0",
"prettier": "2.0.4",
"serverless-dynamodb-local": "0.2.39",
"serverless-offline": "6.1.4",
"serverless-webpack": "5.3.1",
"ts-jest": "25.4.0",
"ts-loader": "7.0.0",
"typescript": "3.8.3",
"webpack": "4.42.1",
"webpack-node-externals": "1.7.2"
},
"author": "The serverless webpack authors (https://github.com/elastic-coders/serverless-webpack)",
"license": "MIT"
}