-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.12 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
{
"name": "mongodb-typescript-example",
"version": "1.0.0",
"description": "Welcome to this MongoDB and TypeScript sample project. The aim of this project is to give you a working example of how you can use the power of MongoDB Atlas with TypeScript and Express to create modern web applications.",
"main": "dist/index.js",
"keywords": [
"mongodb",
"typescript",
"express",
"atlas"
],
"author": "Luce Carter",
"license": "Apache 2.0",
"scripts": {
"build": "tsc",
"prestart": "npm run build",
"start": "ts-node-dev --respawn --transpile-only src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mongodb-developer/mongodb-typescript-example.git"
},
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.3",
"mongodb": "^4.5.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.4.7",
"prettier": "^2.3.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
}
}