This repository was archived by the owner on Oct 13, 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
57 lines (57 loc) · 1.7 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.7 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
49
50
51
52
53
54
55
56
57
{
"name": "hackathon-backend",
"version": "0.1.0",
"description": "the backend server for alert service for ecosystem disruptors",
"main": "index.js",
"author": "Abiria <abiria.dev@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"test": "jest",
"prepare": "husky install"
},
"keywords": [
"api"
],
"devDependencies": {
"@redocly/cli": "^1.0.0-beta.108",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.247",
"@swc/jest": "^0.2.22",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/jest": "^29.0.0",
"@types/js-yaml": "^4.0.5",
"@types/jsonwebtoken": "^8.5.9",
"@types/morgan": "^1.9.3",
"@types/node": "^18.7.15",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"chokidar-cli": "^3.0.0",
"dockerfilelint": "^1.8.0",
"esbuild": "^0.15.7",
"eslint": "^8.23.1",
"eslint-config-xo": "^0.42.0",
"eslint-config-xo-typescript": "^0.53.0",
"husky": "^8.0.1",
"jest": "^29.0.2",
"prisma": "^4.3.1",
"supertest": "^6.2.4",
"typescript": "^4.8.3"
},
"dependencies": {
"@prisma/client": "^4.3.1",
"bcryptjs": "^2.4.3",
"bson": "^4.7.0",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"prisma-docs-generator": "^0.5.0",
"swagger-ui-express": "^4.5.0",
"winston": "^3.8.2"
}
}