This repository was archived by the owner on Feb 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.24 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
43
44
45
46
47
48
{
"name": "ermes-api",
"version": "1.0.0",
"description": "The api of the ermes project",
"main": "index.js",
"scripts": {
"transpile": "tsc -p source",
"start": "node dist/main",
"serve": "npm run transpile && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ermes-noi-hackathon/ermes-api.git"
},
"author": "Eugenio Berretta",
"license": "ISC",
"bugs": {
"url": "https://github.com/ermes-noi-hackathon/ermes-api/issues"
},
"homepage": "https://github.com/ermes-noi-hackathon/ermes-api#readme",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/helmet": "^4.0.0",
"@types/module-alias": "^2.0.1",
"@types/mongodb": "^4.0.7",
"@types/morgan": "^1.9.3",
"@types/move-file": "^1.1.0",
"@types/multer": "^1.4.7",
"@types/node": "^16.4.13",
"joi": "^17.4.2",
"typescript": "^4.3.5"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"dree": "^2.8.3",
"euberlog": "^2.0.18",
"express": "^4.17.1",
"helmet": "^4.6.0",
"module-alias": "^2.2.2",
"mongodb": "^4.1.0",
"morgan": "^1.10.0",
"move-file": "^2.1.0",
"multer": "^1.4.2"
}
}