-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
116 lines (116 loc) · 3.42 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
{
"name": "itemdb",
"version": "1.0.0",
"description": "Neopets Open Source Item Database",
"keywords": [],
"license": "MPL-2.0",
"scripts": {
"dev": "next dev --turbo",
"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.8.2",
"@choc-ui/chakra-autocomplete": "^5.7.0",
"@date-fns/utc": "^2.1.0",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@google-cloud/storage": "^7.13.0",
"@hello-pangea/color-picker": "^3.2.2",
"@hugocxl/react-to-image": "^0.0.9",
"@napi-rs/canvas": "^0.1.58",
"@prisma/client": "^5.21.1",
"@sendgrid/mail": "^8.1.4",
"@sentry/nextjs": "^8.35.0",
"@ungap/structured-clone": "^1.2.0",
"accept-language-parser": "^1.5.0",
"axios": "^1.7.7",
"chance": "^1.1.12",
"color": "^4.2.3",
"cookies-next": "^4.3.0",
"date-fns": "^4.1.0",
"discord-webhook-node": "^1.1.8",
"ejs": "^3.1.9",
"firebase": "^11.0.1",
"firebase-admin": "^12.7.0",
"framer-motion": "^10.15.0",
"he": "^1.2.0",
"html-react-parser": "^5.1.18",
"html-to-image": "^1.11.11",
"ioredis": "^5.4.1",
"jose": "^5.2.0",
"jotai": "^2.10.1",
"lightweight-charts": "^4.2.1",
"lodash": "^4.17.21",
"lru-cache": "^11.0.1",
"next": "^14.2.13",
"next-intl": "^3.23.5",
"next-seo": "^6.6.0",
"next-sitemap": "^4.2.3",
"nextjs-progressbar": "^0.0.16",
"node-vibrant": "^3.2.1-alpha.1",
"object-hash": "^3.0.0",
"pixelmatch": "^6.0.0",
"qs": "^6.13.0",
"rctx-contextmenu": "^1.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-intersection-observer": "^9.13.1",
"react-markdown": "^9.0.1",
"react-stickynode": "^4.1.1",
"react-viewport-list": "^7.1.2",
"request-ip": "^3.3.0",
"sharp": "^0.31.3",
"simple-statistics": "^7.8.7",
"swr": "^2.2.5"
},
"devDependencies": {
"@commitlint/cli": "^18.5.0",
"@commitlint/config-conventional": "^18.5.0",
"@next/bundle-analyzer": "^14.2.3",
"@next/eslint-plugin-next": "^14.2.13",
"@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": "18.0.25",
"@types/react-window": "^1.8.5",
"@types/request-ip": "^0.0.37",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"eslint": "8.48.0",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^8.10.0",
"husky": "^8.0.0",
"lint-staged": "13.0.3",
"prettier": "2.8.4",
"prisma": "^5.21.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": "[email protected]"
}