-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.44 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
{
"name": "chat-app-backend",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"dev": "nodemon --watch . --ignore 'node_modules build dist .git logs tmp/*' --exec 'node server.js'",
"start": "node server.js",
"up": "cross-env NODE_ENV=development npx sequelize-cli db:migrate",
"down": "cross-env NODE_ENV=development npx sequelize-cli db:migrate:undo"
},
"keywords": [
"node js",
"fastify",
"postgresql",
"s3",
"fastify-plugin",
"kafka",
"redis"
],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@fastify/auth": "^4.3.0",
"@fastify/autoload": "^5.7.1",
"@fastify/cors": "^8.3.0",
"@fastify/helmet": "^11.0.0",
"@fastify/redis": "^6.1.1",
"@fastify/static": "^6.11.0",
"axios": "^1.7.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"fastify": "^4.28.1",
"fastify-cli": "^5.8.0",
"fastify-cors": "^6.0.3",
"fastify-plugin": "^4.5.1",
"fastify-socket.io": "^4.0.0",
"kafkajs": "^2.2.4",
"pg": "^8.13.1",
"pg-hstore": "^2.3.4",
"postgres": "^3.4.5",
"sequelize": "^6.37.5",
"socket.io": "^4.8.1",
"uuid": "^11.0.3"
},
"devDependencies": {
"@types/node": "^22.5.1",
"cross-env": "^7.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"nodemon": "^3.1.4",
"rimraf": "^6.0.1",
"sequelize-cli": "^6.6.2",
"tap": "^21.0.1"
}
}