-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·67 lines (67 loc) · 2.31 KB
/
package.json
File metadata and controls
executable file
·67 lines (67 loc) · 2.31 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "comfy-frontend",
"version": "0.0.0",
"description": "A front-end for Comfy written using Preact.",
"license": "GPL-3.0-or-later",
"author": {
"name": "LamkasDev",
"url": "https://lamkas.dev"
},
"scripts": {
"build": "preact build",
"dev-http": "preact watch",
"dev": "preact watch --https --cert=https/fullchain.pem --key=https/privkey.pem",
"serve": "sirv build --port 8080 --cors --single",
"lint": "eslint src/**/*.{ts,tsx}",
"linty": "eslint src/**/*.{ts,tsx} --fix",
"pretty": "prettier --write src/**/*.{ts,tsx}",
"stylelint": "stylelint src/**/*.scss",
"stylelinty": "stylelint src/**/*.scss --fix",
"typecheck": "tsc --noEmit"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@types/preact-i18n": "^2.3.2",
"@types/react": "^18.0.26",
"@types/react-redux": "^7.1.25",
"@types/react-slick": "^0.23.10",
"@types/styled-components": "^5.1.26",
"@types/webtorrent": "^0.109.3",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^8.31.0",
"eslint-config-preact": "^1.3.0",
"eslint-config-prettier": "^8.6.0",
"hls.js": "1.2.9",
"husky": "^8.0.3",
"preact": "^10.11.3",
"preact-cli": "^3.4.4",
"preact-i18n": "2.4.0-preactx",
"preact-render-to-string": "^5.2.6",
"preact-router": "^4.1.0",
"prettier": "2.8.3",
"react-markdown": "^8.0.4",
"react-redux": "^8.0.5",
"react-slick": "^0.29.0",
"redux": "^4.2.0",
"rehype-raw": "^6.1.1",
"sass": "^1.56.1",
"sass-loader": "10.3.1",
"sirv-cli": "^2.0.2",
"styled-components": "^5.3.6",
"stylelint": "^14.16.1",
"stylelint-config-idiomatic-order": "^9.0.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-standard-scss": "^6.1.0",
"typescript": "^4.9.4",
"webtorrent": "^1.9.7",
"zod": "^3.20.2"
},
"browser": {
"fs": false
}
}