forked from squeezeday/phenopacket-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.11 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
38
39
40
41
42
43
44
{
"name": "phenopacket-api",
"version": "1.2.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/index.ts",
"build": "tsc",
"clean": "tsc --clean",
"start": "nodemon dist/index.js",
"build:apischema": "protobuf2swagger"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/md5": "^2.3.2",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.7",
"@types/node": "^18.8.1",
"@types/object-hash": "^3.0.2",
"@types/swagger-jsdoc": "^6.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"dependencies": {
"@types/swagger-ui-express": "^4.1.3",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"generate-password-ts": "^1.6.3",
"md5": "^2.3.0",
"mongodb": "^4.9.1",
"mongoose": "^6.5.4",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.19",
"object-hash": "^3.0.0",
"protobufjs": "^7.1.0",
"swagger-ui-express": "^4.5.0"
}
}