-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.85 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
61
62
{
"name": "chat",
"version": "1.0.0",
"description": "chat app",
"main": "src/index.ts",
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src",
"build": "tsc",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write \"src/**/*.{ts,json,md}\" \"public/**/*.{js,html,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,json,md}\" \"public/**/*.{js,html,css}\"",
"format:public": "prettier --write \"public/**/*.{js,html,css}\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahmed-n-abdeltwab/chat.git"
},
"author": "ahmed nasser",
"license": "ISC",
"bugs": {
"url": "https://github.com/ahmed-n-abdeltwab/chat/issues"
},
"homepage": "https://github.com/ahmed-n-abdeltwab/chat#readme",
"dependencies": {
"@types/winston": "^2.4.4",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.7",
"dotenv": "^16.4.7",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"lokijs": "^1.5.12",
"winston": "^3.17.0",
"ws": "^8.14.2"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.8",
"@types/dotenv": "^8.2.3",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/jsonwebtoken": "^9.0.7",
"@types/lokijs": "^1.5.14",
"@types/node": "^20.4.5",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"jest": "^29.6.1",
"prettier": "^3.4.2",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6",
"typescript-eslint": "^8.18.1"
}
}