forked from mongodb/docs-sample-apps
-
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) · 832 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 832 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": "Sample Mflix Express.js Backend",
"version": "1.0.0",
"description": "Express.js backend for MongoDB sample mflix application demonstrating CRUD operations, aggregations, search, and geospatial queries",
"license": "Apache-2.0",
"author": "Jordan Smith",
"type": "commonjs",
"main": "dist/app.ts",
"scripts": {
"build": "tsc",
"start": "node dist/app.ts",
"dev": "ts-node src/app.ts",
"test-setup": "ts-node src/test-setup.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"express": "^5.1.0",
"mongodb": "^6.3.0",
"dotenv": "^16.3.1",
"cors": "^2.8.5"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.5",
"@types/cors": "^2.8.17",
"typescript": "^5.3.3",
"ts-node": "^10.9.2"
}
}