forked from daveschumaker/artbot-for-stable-diffusion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.51 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "next-horde",
"version": "0.1.0",
"private": true,
"scripts": {
"analyze:prod": "ANALYZE=true NODE_ENV=production npm run build",
"analyze:dev": "ANALYZE=true npm run dev",
"dev": "npm run update:build-id && PORT=3000 node server.js",
"build": "npm run update:build-id && next build",
"build:prod": "npm run install:prod && npm run build",
"install:prod": "npm install --platform=linux --arch=x64",
"lint": "next lint",
"pm2:start-prod": "pm2 start ecosystem.config.js --only horde-js",
"pm2:stop-prod": "pm2 delete ecosystem.config.js --only horde-js",
"pm2:start-staging": "pm2 start ecosystem.config.js --only horde-js-staging",
"pm2:stop-staging": "pm2 delete ecosystem.config.js --only horde-js-staging",
"start": "NODE_ENV=production node server.js",
"update:build-id": "node ./x-build-scripts/updateBuildId.js",
"test": "jest",
"prepare": "husky install"
},
"engines": {
"npm": ">=9.0.0",
"node": ">=18.0.0"
},
"overrides": {
"react-lazyload": {
"react": "18.2.0",
"react-dom": "18.2.0"
}
},
"dependencies": {
"@next/bundle-analyzer": "13.4.7",
"@radix-ui/colors": "0.1.8",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-navigation-menu": "1.1.1",
"@szhsin/react-menu": "3.4.1",
"@tabler/icons-react": "2.17.0",
"body-parser": "1.20.2",
"broadcast-channel": "5.0.3",
"browser-image-resizer": "2.4.1",
"buffer-image-size": "0.6.4",
"client-zip": "2.3.1",
"clone-deep": "4.0.1",
"clsx": "1.2.1",
"dexie": "3.2.4",
"dexie-export-import": "^4.0.7",
"dexie-react-hooks": "1.1.6",
"dompurify": "^3.0.3",
"dotenv": "16.0.3",
"express": "4.18.2",
"fabric": "5.3.0",
"file-saver": "2.0.5",
"is-mobile": "4.0.0",
"lz-string": "1.4.4",
"memoizee": "0.4.15",
"next": "13.4.7",
"next-dark-mode": "3.0.0",
"node-abort-controller": "3.1.1",
"node-cron": "3.0.2",
"node-fetch": "2.6.7",
"node-localstorage": "2.2.1",
"react": "18.2.0",
"react-colorful": "5.6.1",
"react-dom": "18.2.0",
"react-dropzone": "14.2.3",
"react-error-boundary": "4.0.3",
"react-full-screen": "1.1.1",
"react-lazyload": "3.2.0",
"react-markdown": "8.0.7",
"react-portal": "4.2.2",
"react-select": "5.7.0",
"react-sliding-pane": "7.3.0",
"react-swipeable": "7.0.0",
"react-switch": "7.0.0",
"react-textarea-autosize": "8.4.1",
"react-toastify": "9.1.2",
"react-tooltip": "5.16.1",
"react-virtuoso": "4.2.1",
"sharp": "0.32.1",
"statery": "0.6.3",
"streamsaver": "2.0.6",
"styled-components": "6.0.1"
},
"devDependencies": {
"@testing-library/react": "14.0.0",
"@types/autosize": "4.0.1",
"@types/clone-deep": "4.0.1",
"@types/dompurify": "^3.0.2",
"@types/fabric": "4.5.15",
"@types/file-saver": "2.0.5",
"@types/jest": "29.4.0",
"@types/memoizee": "0.4.8",
"@types/react-dom": "18.0.11",
"@types/react-lazyload": "3.2.0",
"@types/react-portal": "4.0.4",
"@types/sharp": "0.31.1",
"@typescript-eslint/eslint-plugin": "5.53.0",
"@typescript-eslint/parser": "5.53.0",
"autoprefixer": "10.4.14",
"babel-plugin-styled-components": "2.1.4",
"eslint": "8.43.0",
"eslint-config-next": "13.4.7",
"husky": "8.0.3",
"jest": "29.4.3",
"postcss": "8.4.21",
"prettier": "2.8.7",
"pretty-quick": "3.1.3",
"raw-loader": "4.0.2",
"tailwindcss": "3.3.2",
"ts-jest": "^29.1.0",
"typescript": "5.1.5"
}
}