-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1009 Bytes
/
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": "MongoDB example",
"main": "dist/index.js",
"keywords": [
"mongodb",
"typescript",
"express",
"atlas"
],
"author": "Glen Worrall",
"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.1",
"mongodb": "^4.10.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.4.7",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5",
"prettier": "^2.3.2"
}
}