-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 878 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
{
"name": "mongodb-rest-api",
"version": "1.0.0",
"description": "MongoDB simple REST API",
"main": "./dist/server.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "npm run build && node dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Informatievlaanderen/VSDS-LDES-E2E-mongodb-rest-api.git"
},
"keywords": [
"MongoDB",
"REST",
"API"
],
"author": "Ranko Orlic",
"license": "EUPL-1.2",
"bugs": {
"url": "https://github.com/Informatievlaanderen/VSDS-LDES-E2E-mongodb-rest-api/issues"
},
"homepage": "https://github.com/Informatievlaanderen/VSDS-LDES-E2E-mongodb-rest-api#readme",
"dependencies": {
"@types/minimist": "^1.2.5",
"@types/node": "^22.10.2",
"fastify": "^5.2.0",
"minimist": "^1.2.8",
"mongodb": "^6.12.0",
"typescript": "^5.7.2"
}
}