-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.42 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
{
"name": "chat-app",
"version": "1.0.0",
"description": "This is a chat app.",
"main": "server.ts",
"author": "vivek80801",
"license": "MIT",
"scripts": {
"start": "node dist/main.js",
"dev": "nodemon ./server.ts",
"lint": "eslint \"./**/*.ts\"",
"lint:fix": "eslint --fix \"./**/*.ts\"",
"format": "prettier --write .",
"web": "webpack --config ./webpack.config.js",
"web:watch": "webpack --watch --config ./webpack.config.js",
"build": "tsc -p ."
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/express-ejs-layouts": "^2.3.2",
"@types/express-session": "^1.17.3",
"@types/node-sass": "^4.11.1",
"@types/passport": "^1.0.6",
"@types/passport-local": "^1.0.33",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"node-sass": "^5.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-loader": "^9.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"webpack": "^5.34.0",
"webpack-cli": "^4.6.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-ejs-layouts": "^2.5.0",
"express-session": "^1.17.1",
"mongoose": "^5.12.5",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"socket.io": "^4.0.1"
}
}