-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.64 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "ts-node-dev src/index.ts | pino-pretty",
"test": "tsc && jest --runInBand --forceExit src/test",
"lint": "eslint ./src",
"deploy": "node lib/index.js",
"heroku-postinstall": "npm install --only-dev && npm run build",
"build": "tsc"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-cognito-identity": "^3.3.0",
"@aws-sdk/client-s3": "^3.3.0",
"@aws-sdk/credential-provider-cognito-identity": "^3.3.0",
"@aws-sdk/credential-provider-sso": "^3.8.0",
"@aws-sdk/node-http-handler": "^3.3.0",
"@aws-sdk/s3-request-presigner": "^3.3.0",
"@aws-sdk/types": "^3.3.0",
"@aws-sdk/util-create-request": "^3.3.0",
"@aws-sdk/util-format-url": "^3.3.0",
"@sendgrid/mail": "^7.4.2",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.1.0",
"express-rate-limit": "^5.3.0",
"js-yaml": "^4.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.18",
"multer": "^1.4.2",
"pino": "^6.11.1",
"pino-pretty": "^5.0.2",
"sharp": "^0.28.0",
"socket.io": "^4.0.1",
"supertest": "^6.1.3",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.6",
"typescript": "^4.2.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/node": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-typescript": "^7.13.0",
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.11",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/jest": "^26.0.23",
"@types/js-yaml": "^4.0.1",
"@types/jsonwebtoken": "^8.5.4",
"@types/multer": "^1.4.6",
"@types/node": "^16.4.9",
"@types/pino": "^6.3.6",
"@types/supertest": "^2.0.11",
"@types/swagger-jsdoc": "^6.0.0",
"@types/swagger-ui-express": "^4.1.2",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-jest": "^27.0.1",
"core-js": "^3.9.1",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"husky": "^7.0.0",
"install": "^0.13.0",
"jest": "^27.0.1",
"nodemon": "^2.0.7",
"npm": "^7.6.3",
"regenerator-runtime": "^0.13.7",
"ts-node-dev": "^1.1.6"
}
}