This repository has been archived by the owner on Nov 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.67 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "webfoto-backend",
"version": "1.0.0",
"description": "The backend of the webfoto project for s4web",
"main": "index.js",
"scripts": {
"transpile": "tsc -p source",
"start": "node dist/main",
"serve": "npm run transpile && npm start",
"lint": "eslint source --ext ts --format codeframe",
"lint:fix": "eslint source --ext ts --format codeframe --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/euberdeveloper/webfoto-backend.git"
},
"author": "Eugenio Vinicio Berretta <euberdeveloper@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/euberdeveloper/webfoto-backend/issues"
},
"homepage": "https://github.com/euberdeveloper/webfoto-backend#readme",
"devDependencies": {
"@euberdeveloper/eslint-plugin": "^1.1.3",
"@types/cors": "^2.8.12",
"@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/node": "^16.4.3",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-unicorn": "^34.0.1",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"dependencies": {
"ajv": "^8.6.2",
"bullmq": "^1.40.1",
"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"
}
}