-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.83 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
{
"name": "server",
"version": "1.0.0",
"description": "Backend for chat app",
"main": "dist/server.js",
"scripts": {
"test": "cross-env NODE_ENV=testing TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha --exit --timeout 20000 -r ts-node/register 'test/**/*.ts'",
"serve": "nodemon server.ts",
"prod": "NODE_ENV=production tsc && node dist/server.js"
},
"author": "Nazar Dizhak",
"license": "ISC",
"dependencies": {
"@supabase/supabase-js": "^2.45.1",
"base64-arraybuffer": "^1.0.2",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"google-auth-library": "^9.14.2",
"handlebars": "^4.7.8",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.4.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.14",
"sharp": "^0.33.5",
"socket.io": "^4.7.4",
"uuid": "^10.0.0",
"web-push": "^3.6.7"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.5",
"@types/chai": "^5.0.1",
"@types/cookie-parser": "^1.4.7",
"@types/cookie-session": "^2.0.49",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/mocha": "^10.0.10",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.26",
"@types/nodemailer": "^6.4.15",
"@types/socket.io": "^3.0.2",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"@types/web-push": "^3.6.4",
"chai": "^5.1.2",
"cross-env": "^7.0.3",
"globals": "^15.4.0",
"mocha": "^11.0.1",
"nodemon": "^3.1.0",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
}
}