-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.48 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "discovervet-portal-api",
"version": "0.0.0",
"description": "APIs for the discovery platform to find vets",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev -r tsconfig-paths/register server.ts -- --dev",
"start": "ts-node server.ts",
"build": "tsc",
"typeorm": "typeorm-ts-node-commonjs",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prettier:format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-rds": "^3.317.0",
"@aws-sdk/client-sts": "^3.316.0",
"@aws-sdk/credential-providers": "^3.316.0",
"@slack/web-api": "^6.9.0",
"@types/morgan": "^1.9.4",
"axios": "^1.3.3",
"body-parser": "^1.20.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"form-data": "^4.0.0",
"google-libphonenumber": "^3.2.32",
"helmet": "^6.0.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"pdfmake": "^0.2.8",
"pg": "^8.8.0",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.10.4",
"shallow-equal-object": "^1.1.1",
"supertokens-node": "^16.2.1",
"twilio": "^4.11.1",
"typedi": "^0.10.0",
"typeorm": "^0.3.17",
"typescript-string-operations": "^1.5.0",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.5.1",
"@types/body-parser": "^1.19.2",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.16",
"@types/google-libphonenumber": "^7.4.23",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.18",
"@types/pdfmake": "^0.2.8",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-airbnb": "^0.0.1-security",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lato-font": "^3.0.0",
"prettier": "^2.8.3",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier:format && npm run lint"
}
}
}