-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
77 lines (77 loc) · 2.54 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
{
"name": "instahost",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"start": "tsc && node dist/index.js",
"build": "tsc",
"pre-commit": "lint-staged",
"docker:run": "docker run --rm -it -p 5000:5000 --env-file ./.env --name instahost instahost",
"docker:dev": "docker compose -f compose.yml -f compose.dev.yml up --build --attach backend",
"docker:build": "docker compose -f compose.yml up --build",
"prettier": "prettier --write src/**/*.{ts,tsx,json}",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"prepare": "husky || true"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.574.0",
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.4.1",
"express-validator": "^7.0.1",
"extract-zip": "^2.0.1",
"http-proxy": "^1.18.1",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"mime-types": "^2.1.35",
"mongoose": "^8.3.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.13",
"p-limit": "^3.1.0",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"playwright": "^1.48.1",
"puppeteer": "^23.5.2",
"simple-git": "^3.24.0",
"socket.io": "^4.7.5"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.11.1",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/http-proxy": "^1.17.14",
"@types/mime-types": "^2.1.4",
"@types/module-alias": "^2.0.4",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/node": "^20.12.8",
"@types/nodemailer": "^6.4.15",
"@types/passport-google-oauth20": "^2.0.16",
"@types/passport-jwt": "^4.0.1",
"eslint": "^8.57.1",
"globals": "^15.9.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.0",
"prettier": "3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.18.0"
}
}