-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 812 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 812 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
{
"name": "trips-api",
"version": "1.0.0",
"main": "server.js",
"exports": "./dist/server.mjs",
"type": "module",
"scripts": {
"dev": "npx tsx watch ./src/server.ts",
"build": "pkgroll --clean-dist --minify",
"start": "node dist/server.mjs"
},
"keywords": [],
"author": "",
"license": "MIT",
"description": "",
"dependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"mongoose": "^8.9.5",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@types/node": "^22.10.7",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"pkgroll": "^2.6.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}