-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.67 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
{
"name": "ts-serverless-openapi",
"version": "1.0.0",
"description": "TypeScript + OpenAPI + Serverless project template",
"scripts": {
"test": "tsoa spec-and-routes && jest --silent",
"test:verbose": "tsoa spec-and-routes && jest",
"test:watch": "concurrently \"jest --silent --watchAll\" \"nodemon -x tsoa spec-and-routes\"",
"test:watch:verbose": "concurrently \"jest --watchAll\" \"nodemon -x tsoa spec-and-routes\"",
"deploy": "serverless deploy",
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec-and-routes\"",
"build": "tsoa spec-and-routes && tsc",
"start": "node build/src/server.js"
},
"author": "Tomasz Tarnowski<[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/aws-lambda": "^8.10.102",
"@types/config": "^3.3.0",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.4",
"@types/jsonwebtoken": "^8.5.9",
"@types/multer": "^1.4.7",
"@types/node": "^18.7.13",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"concurrently": "^7.5.0",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"serverless": "^3.22.0",
"serverless-plugin-typescript": "^2.1.2",
"supertest": "^6.3.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@vendia/serverless-express": "^4.10.1",
"aws-lambda": "^1.0.7",
"config": "^3.3.8",
"express": "^4.18.2",
"inversify": "^6.0.1",
"inversify-binding-decorators": "^4.0.0",
"jsonwebtoken": "^8.5.1",
"swagger-ui-express": "^4.5.0",
"tsoa": "^4.1.3",
"uuid": "^9.0.0"
}
}