-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 974 Bytes
/
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
{
"name": "tsclass",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/fastify-static": "^2.2.1",
"@types/mongoose": "^5.11.97",
"@types/node": "^20.14.11",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/formbody": "^7.4.0",
"@fastify/static": "^7.0.4",
"@types/multer": "^1.4.11",
"@types/socket.io": "^3.0.2",
"dotenv": "^16.4.5",
"fastify": "^4.28.0",
"fastify-cors": "^6.1.0",
"fastify-formbody": "^5.3.0",
"fastify-multer": "^2.0.3",
"http": "^0.0.1-security",
"mongoose": "^8.5.1",
"multer": "^1.4.5-lts.1",
"socket.io": "^4.7.5"
}
}