-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.72 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
63
64
65
{
"name": "piperchat",
"version": "1.0.0",
"description": "A microservices chat app",
"scripts": {
"lint": "npm run --workspace services/ lint --if-present",
"lint:fix": "npm run --workspace services/ lint:fix --if-present",
"test": "npm run --workspace services/ test --if-present",
"pretty": "prettier . --write",
"check:pretty": "prettier . --check"
},
"pre-commit": [
"check:pretty"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@piperchat/api": "^1.0.0",
"@piperchat/commons": "^1.0.0",
"@piperchat/messages-api": "^1.0.0",
"amqplib": "^0.10.3",
"axios": "^1.5.0",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.5.0",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"@types/amqplib": "^0.10.1",
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.4",
"@types/jsonwebtoken": "^9.0.2",
"@types/multer": "^1.4.7",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"jest": "^29.6.4",
"pre-commit": "^1.2.2",
"prettier": "3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.7",
"tsconfig-paths": "^4.2.0",
"typescript": "<5.2.0"
},
"workspaces": [
"services/api",
"services/commons",
"services/frontend",
"services/messages",
"services/messages-api",
"services/monitoring",
"services/notifications",
"services/piperchat",
"services/users",
"services/webrtc"
]
}