-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 872 Bytes
/
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
{
"name": "products-back",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon --exec ts-node src/index.ts",
"start": "ts-node src/index.ts"
},
"devDependencies": {
"nodemon": "^2.0.14"
},
"dependencies": {
"@types/cors": "^2.8.12",
"aws-sdk": "^2.1023.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"mime": "^3.0.0",
"mongodb": "^4.1.4",
"multer": "^1.4.3",
"uuid": "^8.3.2",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.5",
"@types/mime": "^2.0.3",
"@types/multer": "^1.4.7",
"@types/node": "^16.11.7",
"@types/uuid": "^8.3.1"
}
}