-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.88 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.88 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "comfy-backend",
"version": "0.0.0",
"description": "A customizable and modular web back-end for Comfy.",
"license": "GPL-3.0-or-later",
"author": {
"name": "LamkasDev",
"url": "https://lamkas.dev"
},
"scripts": {
"dev": "tsc && cross-env NODE_PATH=./build node build/index.js --dev",
"build": "tsc",
"serve": "cross-env NODE_PATH=./build node build/index.js",
"lint": "eslint src/**/*.{ts,tsx}",
"linty": "eslint src/**/*.{ts,tsx} --fix",
"pretty": "prettier --write 'src/**/*.{ts,tsx}'",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@fastify/type-provider-typebox": "^2.4.0",
"@types/bcrypt": "^5.0.0",
"@types/node": "^18.11.17",
"@types/web-push": "^3.3.2",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.2",
"prettier": "2.8.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@fastify/cookie": "^8.0.0",
"@fastify/cors": "^8.2.0",
"@fastify/multipart": "^7.3.0",
"@fastify/rate-limit": "^7.6.0",
"@fastify/static": "^6.6.0",
"@fastify/websocket": "^7.1.1",
"ajv": "^8.11.2",
"axios": "^1.2.1",
"bcrypt": "^5.0.1",
"bittorrent-tracker": "^9.19.0",
"bufferutil": "^4.0.7",
"cross-env": "^7.0.3",
"fastify": "^4.10.2",
"mysql2": "^2.3.3",
"nanocolors": "^0.2.12",
"redis": "^4.5.1",
"utf-8-validate": "^5.0.10",
"web-push": "^3.5.0",
"zod": "^3.20.2"
}
}