This repository was archived by the owner on Dec 5, 2025. It is now read-only.
forked from mongodb-developer/mongodb-typescript-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.48 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.48 KB
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
{
"name": "tigris-mongodb-typescript-example",
"version": "1.0.0",
"description": "Welcome to this Tigris MongoDB Compatibility with TypeScript sample project. The aim of this project is to give you a working example of how you can use the power of Tigris MongoDB Compatibility with TypeScript and Express to create modern web applications.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prestart": "npm run build",
"start": "ts-node-dev --respawn --pretty --transpile-only src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tigrisdata-community/tigris-mongodb-typescript-example.git"
},
"keywords": [
"mongodb",
"typescript",
"express",
"atlas",
"tigris",
"developer-data-platform"
],
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/tigrisdata-community/tigris-mongodb-typescript-example/issues"
},
"homepage": "https://github.com/tigrisdata-community/tigris-mongodb-typescript-example#readme",
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"mongodb": "^4.0.1"
},
"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"
}
}