-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
59 lines (59 loc) · 1.58 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
{
"name": "chat-backend",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "ts-node src/index.ts",
"eslint": "eslint --ext .ts,.js --fix --quiet .",
"watch": "nodemon ts-node src/index.ts"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.2.0",
"prettier": "^2.0.5",
"json-server": "^0.15.0"
},
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.0",
"@types/express-validator": "^3.0.0",
"@types/jsonwebtoken": "^8.3.2",
"@types/lodash": "^4.14.135",
"@types/mongoose": "^5.5.6",
"@types/multer": "^1.4.3",
"@types/node": "^12.0.10",
"@types/nodemailer": "^6.2.1",
"@types/passport": "^1.0.0",
"@types/socket.io": "^2.1.2",
"@types/validator": "^10.11.1",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"cloudinary": "^1.22.0",
"cors": "^2.8.5",
"date-fns": "^1.30.1",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-validator": "^6.5.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.11",
"mongoose": "^5.6.2",
"multer": "^1.4.2",
"nodemailer": "^6.3.0",
"nodemon": "^1.19.3",
"socket.io": "^2.2.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.2",
"validator": "^11.0.0"
},
"prettier": {
"prettier.tabWidth": 2,
"prettier.singleQuote": true,
"prettier.trailingComma": "all",
"prettier.semi": true,
"prettier.jsxBracketSameLine": true,
"prettier.printWidth": 100
}
}