-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.43 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
{
"name": "medieval-tavern",
"version": "1.0.0",
"description": "API to a app for create e share recipes",
"main": "index.js",
"tsup": {
"entry": [
"src",
"!src/public/**"
]
},
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc && cp -r ./src/public build/",
"start": "node build/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Victor-Palha/Medieval-Tavern.git"
},
"keywords": [
"API",
"RECIPES",
"MONGODB",
"TYPESCRIPT"
],
"author": "Ash",
"license": "MIT",
"bugs": {
"url": "https://github.com/Victor-Palha/Medieval-Tavern/issues"
},
"homepage": "https://github.com/Victor-Palha/Medieval-Tavern#readme",
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/multer": "^1.4.11",
"@types/multer-s3": "^3.0.3",
"@types/node": "^20.11.17",
"tsup": "^8.0.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.521.0",
"@aws-sdk/lib-storage": "^3.521.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.1.2",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"zod": "^3.22.4"
}
}