forked from bradens/slacking-apes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.55 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
{
"name": "ape-checker",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "esbuild --bundle --outdir=dist/handlers --platform=node --log-level=error ./src/handlers/*",
"sam:invoke": "sam local invoke --force-image-build",
"sam:build": "yarn build && sam build --cached --parallel",
"sam:deploy": "sam deploy",
"test": "jest",
"watch": "nodemon -e ts --watch src --exec \"yarn build\"",
"start:api": "sam local start-api --port 3002 --skip-pull-image --warm-containers LAZY",
"postbuild": "./postbuild.sh",
"dev": "rm -rf .aws-sam && concurrently 'yarn watch' 'NODE_ENV=development yarn start:api'",
"lint": "tsc --noEmit && eslint . --ext ts"
},
"dependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/aws-lambda": "^8.10.72",
"@types/eslint": "^7.2.6",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@types/node-fetch": "^2.5.8",
"esbuild": "^0.9.2",
"eslint": "^7.18.0",
"eslint-plugin-import": "^2.22.1",
"mkdirp": "^1.0.4",
"moment": "^2.29.1",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.7",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"concurrently": "^6.0.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4"
}
}