-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "bmx-stack",
"version": "1.0.0",
"description": "BMX Stack - Bun Mongoose Express",
"main": "src/app.ts",
"type": "module",
"scripts": {
"dev": "bun --watch src/server.ts",
"build": "sh scripts/build.sh",
"generate": "bun scripts/generate.ts"
},
"author": {
"name": "Rui Valim Jr",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/joi": "^17.2.3",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/node": "^22.10.1",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"body-parser": "^1.20.3",
"compression": "^1.7.5",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-handlebars": "^8.0.1",
"fs-extra": "^11.2.0",
"helmet": "^8.0.0",
"inquirer": "^12.1.0",
"joi": "^17.13.3",
"mongoose": "^8.8.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1"
}
}