-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
125 lines (125 loc) · 3.73 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
115
116
117
118
119
120
121
122
123
124
125
{
"name": "itemdb",
"version": "1.0.0",
"description": "Neopets Open Source Item Database",
"keywords": [],
"license": "MPL-2.0",
"scripts": {
"dev": "next dev --turbopack",
"build": "npx prisma generate && next build",
"build-proxy": "npx prisma generate --data-proxy && next build",
"ts": "tsc --noEmit --incremental",
"ts-check": "tsc",
"start": "PORT=4000 next start",
"lint": "next lint",
"lint-fix": "next lint --fix",
"prettier": "prettier --write .",
"prepare": "husky install",
"postbuild": "next-sitemap"
},
"dependencies": {
"@chakra-ui/icons": "^2.2.4",
"@chakra-ui/react": "^2.10.4",
"@choc-ui/chakra-autocomplete": "^5.8.1",
"@date-fns/utc": "^2.1.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@google-cloud/storage": "^7.15.0",
"@hello-pangea/color-picker": "^3.2.2",
"@hugocxl/react-to-image": "^0.0.9",
"@json2csv/node": "^7.0.6",
"@napi-rs/canvas": "^0.1.60",
"@prisma/client": "^6.2.1",
"@sentry/nextjs": "^9.0.1",
"@tycrek/discord-hookr": "^0.1.0",
"@umami/api-client": "^0.76.0",
"accept-language-parser": "^1.5.0",
"axios": "^1.7.9",
"chance": "^1.1.12",
"cheerio": "^1.0.0",
"color": "^4.2.3",
"cookies-next": "^5.1.0",
"date-fns": "^4.1.0",
"ejs": "^3.1.9",
"firebase": "^11.2.0",
"firebase-admin": "^13.0.2",
"framer-motion": "^10.15.0",
"fuse.js": "^7.0.0",
"he": "^1.2.0",
"html-react-parser": "^5.1.18",
"html-to-image": "^1.11.11",
"ioredis": "^5.4.2",
"jose": "^5.2.0",
"jotai": "^2.11.1",
"lightweight-charts": "^4.2.2",
"lodash": "^4.17.21",
"lru-cache": "^11.0.1",
"next": "^15.1.6",
"next-intl": "^3.23.5",
"next-seo": "^6.6.0",
"next-sitemap": "^4.2.3",
"nextjs-progressbar": "^0.0.16",
"node-vibrant": "^4.0.3",
"object-hash": "^3.0.0",
"pixelmatch": "^6.0.0",
"qs": "^6.13.0",
"query-string": "^9.1.1",
"rctx-contextmenu": "^1.4.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.3.0",
"react-markdown": "^9.0.3",
"react-stickynode": "^4.1.1",
"react-vertical-timeline-component": "3.5.3",
"react-viewport-list": "^7.1.2",
"request-ip": "^3.3.0",
"resend": "^4.1.1",
"simple-statistics": "^7.8.7",
"swr": "^2.2.5"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@next/bundle-analyzer": "^15.1.7",
"@next/eslint-plugin-next": "15.1.0",
"@swc-jotai/react-refresh": "^0.2.0",
"@types/accept-language-parser": "^1.5.6",
"@types/chance": "^1.1.3",
"@types/color": "^3.0.6",
"@types/ejs": "^3.1.2",
"@types/node": "18.11.9",
"@types/object-hash": "^3.0.2",
"@types/pixelmatch": "^5.2.4",
"@types/qs": "^6.9.11",
"@types/react": "19.0.1",
"@types/react-vertical-timeline-component": "^3",
"@types/react-window": "^1.8.5",
"@types/request-ip": "^0.0.37",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"babel-plugin-react-compiler": "19.0.0-beta-37ed2a7-20241206",
"eslint": "8.48.0",
"eslint-config-next": "15.1.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-react-compiler": "19.0.0-beta-37ed2a7-20241206",
"husky": "^8.0.0",
"lint-staged": "15.3.0",
"prettier": "2.8.4",
"prisma": "^6.2.1",
"ts-node": "10.9.2",
"tsc-files": "^1.1.4",
"typescript": "^5.6.2",
"wp-types": "^3.64.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write"
],
"**/*.ts": "tsc-files --noEmit"
},
"packageManager": "yarn@4.6.0",
"resolutions": {
"@types/react": "19.0.1"
}
}