-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
{
"name": "dungeons-and-dragons-companion",
"version": "1.0.1",
"description": "An api to provide all necessary data to the dnd companion app!",
"main": "index.ts",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.ts",
"dev": "nodemon --exec ts-node ./src/index.ts --project ./tsconfig.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/accepts": "^4.3.0",
"@fastify/cors": "^7.0.0",
"@fastify/websocket": "^8.3.1",
"bcrypt": "^5.1.1",
"chatgpt": "^5.2.5",
"fastify": "^4.26.0",
"fastify-socket.io": "^5.0.0",
"fastify-sse-v2": "^3.1.2",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.1.0",
"nanoid": "^5.0.1",
"socket.io": "^4.7.4"
},
"devDependencies": {
"@fastify/jwt": "^7.2.2",
"@socket.io/mongo-adapter": "^0.3.2",
"@types/bcrypt": "^5.0.1",
"@types/fastify-cors": "^2.1.0",
"@types/jsonwebtoken": "^9.0.3",
"@types/mongodb": "^4.0.7",
"@types/node": "^20.8.9",
"dotenv": "^16.3.1",
"nodemon": "^3.0.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
},
"engines": {
"node": "18.12.1"
}
}