-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
99 lines (99 loc) · 2.96 KB
/
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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "artbot-haidra",
"version": "0.0.1",
"description": "A front-end GUI for interacting with AI Horde's distributed cluster of Stable Diffusion workers",
"scripts": {
"build": "node generateBuildId.js && next build",
"dev": "next dev",
"lint": "next lint",
"postbuild": "cp -R public .next/standalone && cp -R .next/static .next/standalone/.next && cp ecosystem.config.js .next/standalone",
"prepare": "husky",
"prettier": "prettier --write \"app/**/*.{js,jsx,ts,tsx}\"",
"prod:serve": "pm2 stop artbot && pm2 delete artbot && pm2 start ecosystem.config.js --env production --only artbot && pm2 save",
"start": "next start",
"test": "jest"
},
"engines": {
"npm": ">=9.5.1",
"node": ">=18.18.0"
},
"keywords": [
"ai",
"ai-art",
"distributed-computing",
"generative-art",
"javascript",
"stable-diffusion",
"typescript"
],
"author": "Dave Schumaker <daveschumaker@users.noreply.github.com>",
"license": "AGPL-3.0",
"dependencies": {
"@ebay/nice-modal-react": "1.2.13",
"@headlessui/react": "2.2.0",
"@next/bundle-analyzer": "14.2.16",
"@serwist/next": "9.0.11",
"@szhsin/react-accordion": "1.3.0",
"@szhsin/react-menu": "4.2.3",
"@tabler/icons-react": "3.26.0",
"browser-image-resizer": "2.4.1",
"buffer": "6.0.3",
"client-zip": "2.4.6",
"clone-deep": "4.0.1",
"clsx": "2.1.1",
"dexie": "4.0.10",
"dirty-json": "0.9.2",
"embla-carousel-react": "8.5.1",
"file-saver": "2.0.5",
"gray-matter": "4.0.3",
"isomorphic-dompurify": "2.19.0",
"js-sha256": "0.11.0",
"meta-png": "1.0.6",
"nanoid": "5.0.9",
"next": "14.2.16",
"pako": "2.1.0",
"pngjs": "7.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-dropzone": "14.3.5",
"react-full-screen": "1.1.1",
"react-hot-toast": "2.4.1",
"react-loader-spinner": "6.1.6",
"react-markdown": "9.0.1",
"react-paginate": "8.2.0",
"react-photo-album": "2.4.1",
"react-responsive-modal": "6.4.2",
"react-swipeable": "7.0.2",
"react-textarea-autosize": "8.5.6",
"react-use": "17.6.0",
"serwist": "9.0.11",
"statery": "0.7.1"
},
"devDependencies": {
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16.1.0",
"@types/clone-deep": "4.0.4",
"@types/file-saver": "2.0.7",
"@types/jest": "29.5.14",
"@types/node": "22.10.2",
"@types/pako": "2.0.3",
"@types/pngjs": "6.0.5",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/parser": "7.17.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.16",
"eslint-config-prettier": "9.1.0",
"husky": "9.1.7",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.11",
"postcss": "8.4.49",
"prettier": "3.4.2",
"tailwindcss": "3.4.16",
"ts-jest": "29.2.5",
"typescript": "5.7.2",
"typescript-eslint": "8.18.1"
}
}