This repository has been archived by the owner on Nov 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.83 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
57
58
59
60
61
62
63
64
{
"name": "disque",
"private": "true",
"scripts": {
"check:lint": "eslint .",
"check:format": "prettier --check *",
"check:types": "tsc --noEmit",
"test": "jest",
"develop": "nodemon",
"build": "npm-run-all --serial build:*",
"build:bundle": "esbuild --bundle --minify --outfile=dist/handler.js --platform=node --sourcemap --define:process.env.NODE_ENV=\\\"production\\\" --tree-shaking=true src/handler.ts",
"build:package": "mkdir -p out && zip -j out/function.zip dist/handler.js dist/handler.js.map"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts"
],
"watch": [
"src"
],
"exec": "ts-node --transpile-only -r tsconfig-paths/register src/main.ts",
"ext": "ts"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.95",
"@types/cors": "^2.8.12",
"@types/eslint": "^8.4.2",
"@types/express": "^4.17.13",
"@types/ioredis": "^4.28.10",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"aws-cdk": "^2.23.0",
"aws-cdk-lib": "^2.22.0",
"constructs": "^10.0.130",
"dotenv": "^16.0.1",
"esbuild": "^0.14.38",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"nodemon": "^2.0.16",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"supertest": "^6.2.3",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.6.4"
},
"dependencies": {
"axios": "^0.27.2",
"cors": "^2.8.5",
"express": "^5.0.0-beta.1",
"ioredis": "^5.0.6",
"jose": "^4.8.1",
"koa": "^2.13.4",
"serverless-http": "^3.0.1",
"superstruct": "^0.15.4",
"winston": "^3.7.2"
}
}