-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.98 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
{
"name": "mwb-connect-backend",
"version": "1.0.0",
"description": "MWB Connect REST API",
"scripts": {
"start": "nodemon",
"check-types": "tsc",
"build": "tsc",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"test": "jest",
"postinstall": "rm ./node_modules/async-redis/src/index.d.ts",
"migrate:up": "db-migrate up --config migrations/config.json",
"migrate:down1": "db-migrate down --config migrations/config.json --count 1",
"migrate:create": "db-migrate create --sql-file --config migrations/config.json"
},
"license": "Apache-2.0",
"dependencies": {
"@types/async-redis": "^1.1.3",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/jsonwebtoken": "^9.0.1",
"@types/pg-pool": "^2.0.3",
"@types/qrcode-terminal": "^0.12.0",
"@types/uuid": "^9.0.1",
"async-redis": "^2.0.0",
"axios": "^1.3.4",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"firebase-admin": "^11.5.0",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.41",
"node-cron": "3.0.2",
"nodemailer": "^6.9.1",
"os-utils": "0.0.14",
"pdf-lib": "^1.17.1",
"uuid": "^9.0.0",
"pg": "^8.10.0",
"yup": "^1.4.0",
"pngjs": "^7.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-typescript": "^7.21.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.3",
"@types/node-cron": "^3.0.7",
"@types/nodemailer": "^6.4.7",
"@types/os-utils": "0.0.1",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"db-migrate": "^0.11.14",
"db-migrate-pg": "^1.5.2",
"eslint": "^8.36.0",
"jest": "^29.5.0",
"nodemon": "^2.0.21",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}