-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 801 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 801 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
{
"name": "mongodb_sajat",
"version": "1.0.0",
"description": "This is for testing and practice purposes",
"main": "app.ts",
"scripts": {
"compile": "tsc && node ./dist/app.js",
"dev-start": "nodemon --watch \"./src/**/*\" --ext ts --exec \"npm run compile\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@typegoose/auto-increment": "^1.8.0",
"@typegoose/typegoose": "^9.12.1",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"mongoose": "^6.6.3"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/node": "^18.8.3",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}