-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 978 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 978 Bytes
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
{
"name": "aws_app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node ./src/app.ts",
"dev": "nodemon --config nodemon.json src/app.ts",
"build": "npx tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.1074.0",
"body-parser": "^1.19.2",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.17.2",
"helmet": "^5.0.2",
"multer": "^1.4.4",
"multer-s3": "^2.10.0",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"serverless-http": "^2.7.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/helmet": "^4.0.0",
"@types/multer": "^1.4.7",
"@types/multer-s3": "^2.7.11",
"@types/node": "^17.0.21",
"@types/uuid": "^8.3.4",
"nodemon": "^2.0.15",
"serverless-offline": "^8.4.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}