-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.4 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
{
"name": "morsujity-backend",
"version": "1.0.0",
"description": "Backend to manage morsujity",
"homepage": "https://github.com/xkvbikx/morsujity-backend",
"license": "GPL-3.0-or-later",
"author": {
"name": "Jakub Marchwiany",
"email": "[email protected]"
},
"scripts": {
"start": "NODE_ENV=production node -r dotenv/config main.js dotenv_config_path=.env.production",
"start-dev": "NODE_ENV=production node -r dotenv/config main.js dotenv_config_path=.env.development",
"dev": "NODE_ENV=development nodemon --exec ts-node -r dotenv/config ./src/main.ts dotenv_config_path=./.env.development",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"build": "rimraf ./build && tsc && cp -r ./src/utils/mail-messages ./build/utils/ && cp package.json package-lock.json myKey.json {.env.production} ./build/"
},
"dependencies": {
"@google-cloud/storage": "^6.5.4",
"@swc/core": "^1.3.10",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"envalid": "^7.3.1",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"handlebars": "^4.7.7",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.7.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.8.0",
"nodemailer-smtp-transport": "^2.4.2",
"sha256": "^0.2.0",
"sharp": "^0.31.1",
"uuid": "^9.0.0",
"yup": "1.0.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^9.0.1",
"@types/multer": "^1.4.7",
"@types/nodemailer": "^6.4.6",
"@types/nodemailer-smtp-transport": "^2.7.5",
"@types/sha256": "0.2.0",
"@types/sharp": "^0.31.0",
"@types/uuid": "^9.0.0",
"@types/yup": "^0.32.0",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"nodemon": "^3.0.1",
"rimraf": "^4.1.2",
"swc": "^1.0.11",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}