-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.85 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
{
"name": "poe2-tools",
"version": "0.1.0",
"private": true,
"scripts": {
"scrape": "npm run scrape:notes && npm run scrape:ladder",
"scrape:notes": "ts-node --project scripts/tsconfig.json src/scripts/scrape-patch-notes.ts",
"scrape:items": "ts-node --project scripts/tsconfig.json src/scripts/scrape-all-items.ts",
"scrape:ladder": "ts-node --project scripts/tsconfig.json src/scripts/scrape-ladder-stats.ts",
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"build:fix": "next lint --fix && prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\""
},
"dependencies": {
"@hello-pangea/dnd": "^17.0.0",
"@hookform/resolvers": "^3.9.1",
"@nivo/axes": "^0.88.0",
"@nivo/bar": "^0.88.0",
"@nivo/colors": "^0.88.0",
"@nivo/core": "^0.88.0",
"@nivo/line": "^0.88.0",
"@nivo/pie": "^0.88.0",
"@nivo/tooltip": "^0.88.0",
"@react-spring/web": "^9.7.5",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/auth-ui-react": "^0.4.7",
"@supabase/auth-ui-shared": "^0.1.8",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.47.5",
"@tanstack/react-query": "^5.62.9",
"@tanstack/react-query-devtools": "^5.62.9",
"@types/uuid": "^10.0.0",
"@uiw/react-md-editor": "^4.0.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
"critters": "^0.0.23",
"framer-motion": "^11.11.17",
"i": "^0.3.7",
"isomorphic-dompurify": "^2.19.0",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"lucide-react": "^0.460.0",
"lz-string": "^1.5.0",
"next": "^15.1.3",
"next-themes": "^0.4.4",
"npm": "^10.9.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.2",
"react-markdown": "^9.0.1",
"react-zoom-pan-pinch": "^3.6.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.0",
"tailwind-merge": "^2.5.4",
"uuid": "^11.0.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/lodash": "^4.17.13",
"@types/node": "^20",
"@types/puppeteer": "^5.4.7",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"compression-webpack-plugin": "^11.1.0",
"eslint": "^8",
"eslint-config-next": "^15.1.3",
"eslint-plugin-react-hooks": "^5.0.0",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"puppeteer": "^23.11.1",
"supabase": "^2.0.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}