-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.62 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
{
"name": "bulb-chat-server",
"version": "1.0.0",
"description": "Backend for bulb chat",
"main": "dist/src/index.js",
"scripts": {
"start": "node -r dotenv/config ./dist/index.js",
"dev": "tsc-watch --onSuccess \"node -r dotenv/config ./dist/index.js\"",
"build": "npx --package typescript tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/John-Daniels/bulb-chat-server.git"
},
"author": "John-Daniels",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"helmet": "^5.0.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.8.0",
"nodemailer-express-handlebars": "^5.0.0",
"socket.io": "^4.5.4",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"tsc-watch": "^5.0.3",
"typescript": "^4.8.4"
},
"bugs": {
"url": "https://github.com/John-Daniels/bulb-chat-server/issues"
},
"homepage": "https://github.com/John-Daniels/bulb-chat-server#readme"
}