-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.27 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.27 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "devkor-backend",
"version": "1.0.0",
"description": "KUDOG Back-End",
"main": "index.js",
"scripts": {
"test": "jest --detectOpenHandles",
"dev": "NODE_ENV=development ts-node -r tsconfig-paths/register ./src ./src/index.ts",
"prebuild": "rm -rf dist",
"build": "NODE_ENV=production tsc -p . && tsc-alias -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devkor-project/backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/devkor-project/backend/issues"
},
"homepage": "https://github.com/devkor-project/backend#readme",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.2",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.14",
"@types/jest": "^29.0.3",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^8.5.9",
"@types/method-override": "^0.0.32",
"@types/node": "^18.7.18",
"@types/node-schedule": "^2.1.0",
"@types/nodemailer": "^6.4.6",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"jest": "^29.0.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.7.0",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.3"
},
"dependencies": {
"argon2": "^0.29.1",
"axios": "^1.2.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"class-validator": "^0.13.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"pg": "^8.10.0",
"express": "^4.18.1",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mailer-send-ts": "^1.7.0",
"method-override": "^3.0.0",
"mysql2": "^2.3.3",
"node-schedule": "^2.1.0",
"nodemailer": "^6.7.8",
"reflect-metadata": "^0.1.13",
"ts-custom-error": "^3.2.2",
"typeorm": "^0.3.10",
"winston": "^3.8.1",
"winston-daily-rotate-file": "^4.7.1"
}
}