forked from MuhammadRadifa/api-comunity-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.64 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
{
"name": "chat-app",
"version": "1.0.0",
"description": "Api For Chat-App",
"main": "dist/main.js",
"scripts": {
"test": "jest",
"build": "npx tsc",
"start": "node dist/main.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/main.js\"",
"debug": "set DEBUG=express:* & node dist/main.js",
"lint": "eslint . --ext .ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/preset-env": "^7.21.4",
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-rate-limit": "^6.9.0",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"mongoose": "^7.0.4",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.1",
"socket.io": "^4.6.1",
"uuid": "^9.0.0",
"winston": "^3.10.0"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-typescript": "^7.22.5",
"@jest/globals": "^29.6.2",
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/ejs": "^3.1.2",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/jsonwebtoken": "^9.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^18.15.11",
"@types/nodemailer": "^6.4.7",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"babel-jest": "^29.5.0",
"concurrently": "^8.0.1",
"eslint": "^8.38.0",
"prettier": "^2.8.7",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.0.4"
}
}