-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 959 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 959 Bytes
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
{
"name": "futuremesh-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint . && prettier -c \"**/*.js\"",
"fmt": "prettier --write \"**/*.js\"",
"start": "node --env-file=.env server.js",
"dev": "node --env-file=.env.development.local server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/cookie": "^9.4.0",
"@fastify/cors": "^9.0.1",
"@fastify/formbody": "^7.4.0",
"@fastify/mongodb": "^8.0.0",
"@fastify/session": "^10.9.0",
"@fastify/static": "^7.0.4",
"@fastify/websocket": "^10.0.1",
"dotenv": "^16.4.7",
"fastify": "^4.28.1",
"fastify-plugin": "^4.5.1",
"mongoose": "^8.5.3",
"openai": "^4.56.0",
"universal-llm": "github:Universal-Code-Modules/universal-llm"
},
"devDependencies": {
"eslint": "^9.20.1",
"eslint-config-metarhia": "^9.1.1",
"prettier": "^3.4.2"
}
}