-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
88 lines (88 loc) · 2.38 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
84
85
86
87
88
{
"name": "msclubwebserver",
"version": "1.0.0",
"description": "MS Club Web Site Server",
"main": "app.js",
"scripts": {
"start": "NODE_ENV=Production node build/app.js",
"local:server": "cross-env NODE_ENV=Local nodemon src/app.ts",
"dev:server": "cross-env NODE_ENV=Development nodemon src/app.ts",
"prod:server": "cross-env NODE_ENV=Production nodemon src/app.ts",
"build": "tsc -p .",
"build:docker": "docker build -t ghcr.io/ms-club-sliit/msclubwebserver .",
"prepare": "husky install",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write ."
},
"keywords": [
"nodejs",
"typescript",
"express"
],
"author": "MS CLUB SLIIT",
"license": "ISC",
"dependencies": {
"@google-cloud/storage": "^5.16.1",
"@sendgrid/mail": "^7.6.0",
"@types/bcrypt": "^5.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/cron": "^1.7.3",
"@types/firebase": "^3.2.1",
"@types/handlebars": "^4.1.0",
"@types/imagemin": "^7.0.1",
"@types/jsonwebtoken": "^8.5.6",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.7",
"@types/nodemailer": "^6.4.4",
"@types/sharp": "^0.29.4",
"@types/uuid": "^8.3.3",
"@types/validator": "^13.7.0",
"@types/whatwg-url": "^8.2.1",
"amqplib": "^0.8.0",
"axios": "^0.24.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cron": "^1.8.2",
"cross-fetch": "^3.1.4",
"dayjs": "^1.10.7",
"dotenv": "^10.0.0",
"env-cmd": "^10.1.0",
"express": "^4.17.1",
"firebase": "^9.5.0",
"imagemin": "^7.0.1",
"is-jpg": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"multer": "^1.4.3",
"node-fetch": "^3.1.0",
"nodemailer": "^6.7.2",
"nodemailer-sendgrid": "^1.0.3",
"pino": "^7.4.0",
"pino-pretty": "^7.2.0",
"sharp": "^0.29.3",
"validator": "^13.7.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/amqplib": "^0.8.2",
"@types/express": "^4.17.13",
"@types/node": "^16.11.9",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"cross-env": "^7.0.3",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"firebase-admin": "^10.0.0",
"husky": "^7.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.2",
"uuid": "^8.3.2"
}
}