-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.11 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.11 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
{
"name": "bitjourney-navigator",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node --env-file=.env dist/index.js",
"build-run": "tsc && node --env-file=.env dist/index.js"
},
"author": "Russell Richardson <russjr08>",
"license": "ISC",
"description": "Navigator is the middleware server for BitJourney which handles queueing tasks and sending them to the Stable Diffusion backend, then sending the results back to the client.",
"_moduleAliases": {
"@": "dist/"
},
"dependencies": {
"axios": "1.11.0",
"express": "^4.21.1",
"express-query-boolean": "^2.0.0",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"mysql2": "^3.11.3",
"socket.io": "^4.8.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.13.5",
"@types/socket.io": "^3.0.1",
"@types/uuid": "^10.0.0",
"lint-staged": "^15.5.0",
"source-map-support": "^0.5.21",
"typescript": "^5.7.3"
}
}