-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.57 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.57 KB
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
{
"name": "react-chat-backend",
"version": "1.0.0",
"main": "src/index.ts",
"author": "Abdul-Gafur",
"license": "MIT",
"private": true,
"scripts": {
"start": "tsc && cross-env NODE_PATH=dist node dist/index.js",
"start:dev": "cross-env NODE_PATH=src ts-node ./src/index.ts",
"start:watch": "cross-env NODE_PATH=src nodemon ./src/index.ts",
"build": "cross-env NODE_PATH=src tsc",
"lint": "yarn eslint . --ext .ts --max-warnings 0 --color",
"lint:fix": "yarn eslint . --ext .ts --fix --max-warnings 0 --color"
},
"dependencies": {
"@types/url-parse": "^1.4.5",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validator": "^6.13.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.13",
"url-parse": "^1.5.3",
"ws": "^8.2.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-validator": "^3.0.0",
"@types/jsonwebtoken": "^8.5.6",
"@types/mongoose": "^5.11.97",
"@types/node": "^16.11.9",
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.4.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
}
}