-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.72 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.72 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
53
54
55
56
57
58
59
{
"scripts": {
"dev": "set NODE_ENV=development&&ts-node src/index.ts",
"devStart": "set NODE_ENV=production&&ts-node src/index.ts",
"test": "set NODE_ENV=development&&vitest",
"coverage": "set NODE_ENV=development&&vitest run --coverage",
"build": "npm install && tsc",
"start": "node dist/src/index.js",
"clear": "ts-node src/config/clear.ts",
"send": "ts-node src/services/notification/pushNotification.ts",
"query": "ts-node src/config/query.ts"
},
"dependencies": {
"axios": "^1.2.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"firebase-admin": "^11.4.1",
"jsonwebtoken": "^9.0.0",
"multer": "^1.4.5-lts.1",
"pg": "^8.8.0",
"sequelize": "^6.28.0",
"socket.io": "^4.5.4",
"socket.io-client": "^4.5.4",
"tsc": "^2.0.4",
"typescript": "^4.9.4",
"vitest": "^0.26.3"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/jest": "^29.2.4",
"@types/jsonwebtoken": "^9.0.0",
"@types/multer": "^1.4.7",
"@types/sequelize": "^4.28.14",
"@types/supertest": "^2.0.12",
"jest": "^29.3.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1"
},
"name": "chat_application_back",
"version": "1.0.0",
"main": "index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/FabricioLR/chat_application_back.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FabricioLR/chat_application_back/issues"
},
"homepage": "https://github.com/FabricioLR/chat_application_back#readme",
"description": ""
}