-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.46 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
{
"name": "connectus-api",
"version": "1.0.0",
"description": "🔐 A Node.js Web API to chat safely",
"main": "./src/index.ts",
"scripts": {
"dev": "tsnd src/index.ts",
"test": "jest",
"build": "prisma migrate dev && npm run dev",
"lint": "eslint src",
"db:migrate": "prisma migrate dev"
},
"author": "Connectus Team",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.7.0",
"colors": "^1.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"express": "^4.18.2",
"node-rsa": "^1.1.1",
"socket.io": "^4.7.2",
"ts-node-dev": "^2.0.0",
"twofish": "^1.0.1"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.6",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"@types/node-rsa": "^1.1.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"dotenv": "^16.3.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"nodemon": "^3.0.2",
"prettier": "^3.1.0",
"prisma": "^5.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"optionalDependencies": {
"bufferutil": "^4.0.8",
"utf-8-validate": "^5.0.10"
}
}