-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.7 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.7 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
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
115
116
117
118
119
{
"name": "nextjs-with-typescript",
"version": "5.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"post-update": "echo \"codesandbox preview only, need an update\" && yarn upgrade --latest",
"//i18n:extract": "https://github.com/lingui/js-lingui/issues/952",
"i18n:extract": "NODE_ENV=development lingui extract",
"i18n:extract:clean": "NODE_ENV=development lingui extract --clean",
"i18n:compile": "lingui compile",
"i18n:status": "node ./scripts/i18n/status.mjs",
"i18n:refresh": "node ./scripts/i18n/refresh.mjs",
"docker": "docker run -it -p 8000:8000 --gpus all --rm diffusers-api",
"test": "vitest --run",
"stripe-dev": "stripe listen --forward-to localhost:3000/api/stripe",
"gongo-update": "yarn add --exact gongo-client@latest gongo-client-react@latest gongo-server@latest gongo-server-db-mongo@latest"
},
"engines": {
"node": "^24.0.0",
"pnpm": "^10.26.1"
},
"dependencies": {
"@banana-dev/banana-dev": "4.0.0",
"@emotion/cache": "11.10.3",
"@emotion/react": "11.10.4",
"@emotion/server": "11.10.0",
"@emotion/styled": "11.10.4",
"@jsquash/jxl": "^1.0.3",
"@jsquash/png": "^2.1.4",
"@lingui/core": "4.3.0",
"@lingui/react": "4.3.0",
"@mui/icons-material": "5.14.9",
"@mui/lab": "5.0.0-alpha.145",
"@mui/material": "5.14.10",
"@projectfunction/async-busboy": "^1.0.4",
"@react-hook/window-size": "^3.1.1",
"@serwist/next": "^9.2.3",
"@stripe/react-stripe-js": "^1.10.0",
"@stripe/stripe-js": "^1.35.0",
"@vercel/analytics": "1.0.2",
"aws-sdk": "^2.1231.0",
"bson": "6.2.0",
"clsx": "^2.1.1",
"date-fns": "^2.29.2",
"discourse2": "1.1.1",
"file-type": "18.5.0",
"gongo-client": "2.8.2",
"gongo-client-react": "0.5.3",
"gongo-server": "3.5.0",
"gongo-server-db-mongo": "3.2.2",
"highcharts": "^10.2.1",
"highcharts-react-official": "^3.1.0",
"ignore-loader": "^0.1.2",
"ipdata": "^2.2.4",
"jszip": "3.10.1",
"masonic": "^4.1.0",
"micro": "^9.4.1",
"micro-cors": "^0.1.1",
"mongodb": "6.2.0",
"mongodb-rest-relay": "1.9.4",
"next": "16.0.10",
"next-auth": "^4.23.1",
"passport": "0.6.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "2.0.0",
"passport-twitter": "^1.0.4",
"q-floodfill": "^1.3.1",
"rc-progress": "^3.4.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-event-listener": "0.6.6",
"react-hook-inview": "4.5.0",
"react-toastify": "9.0.8",
"react-virtuoso": "^4.5.1",
"sanitize-filename": "^1.6.3",
"sharp": "^0.34.5",
"stripe": "^10.7.0",
"stylis": "4.1.1",
"stylis-plugin-rtl": "2.1.1",
"uuid": "^9.0.0",
"yup": "1.0.0-beta.7"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@lingui/cli": "4.3.0",
"@lingui/macro": "4.3.0",
"@lingui/swc-plugin": "5.8.0",
"@testing-library/react": "14.0.0",
"@types/micro-cors": "^0.1.2",
"@types/node": "^25.0.3",
"@types/react": "19.2.7",
"@types/react-event-listener": "0.4.12",
"@types/stylis": "^4.0.2",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "6.4.1",
"@typescript-eslint/parser": "6.4.1",
"babel-plugin-macros": "^3.1.0",
"eslint": "8.23.0",
"eslint-config-next": "16.0.10",
"eslint-plugin-unused-imports": "2.0.0",
"fetch-mock-cache": "^2.3.1",
"prettier": "2.7.1",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"browser": {
"crypto": false
},
"resolutions": {
"@swc/core": "1.13.21"
},
"packageManager": "pnpm@10.26.1"
}