-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
64 lines (64 loc) · 1.86 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
{
"name": "relisten-web",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "server.js",
"scripts": {
"production": "NODE_ENV=production next start",
"build": "NODE_ENV=production next build",
"start": "next dev",
"lint": "eslint src/**/*.ts src/**/*.tsx bin/*.js",
"bands": "node src/lib/generateSlugs.js"
},
"author": "Daniel Saewitz",
"license": "MIT",
"dependencies": {
"@floating-ui/react": "^0.26.13",
"@fortawesome/fontawesome-free": "^6.5.1",
"@reduxjs/toolkit": "^1.9.5",
"@tanstack/react-query": "^5.35.1",
"@tanstack/react-query-devtools": "^5.35.1",
"@tanstack/react-query-next-experimental": "^5.35.1",
"@types/react-redux": "^7.1.33",
"clsx": "^2.1.1",
"framer-motion": "12.0.0-alpha.1",
"isomorphic-fetch": "3.0.0",
"ky": "^1.2.4",
"ky-universal": "^0.12.0",
"mousetrap": "1.6.5",
"next": "15.0.3",
"next-redux-wrapper": "8.1.0",
"nextjs-toploader": "^3.7.15",
"node-device-detector": "^2.1.0",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106",
"react-redux": "^8.1.2",
"react-timeago": "^7.2.0",
"redux": "^4.2.1",
"tailwind-merge": "^2.3.0",
"thenby": "^1.3.4",
"ua-parser-js": "^1.0.37"
},
"devDependencies": {
"@switz/eslint-config": "^11.0.0",
"@types/node": "^20.12.10",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/ua-parser-js": "^0.7.39",
"autoprefixer": "^10.4.19",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint_d": "^13.1.1",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5"
},
"pnpm": {
"overrides": {
"@types/react": "npm:types-react@19.0.0-rc.1"
}
}
}