-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.06 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
{
"name": "rgllm.com",
"version": "5.0.0",
"private": true,
"author": {
"name": "Rogério Moreira",
"email": "[email protected]",
"url": "https://rgllm.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rgllm/rgllm.com.git"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "next dev",
"start": "next dev",
"build": "prisma generate --no-engine && next build",
"start:prod": "next start",
"lint": "eslint --cache --cache-location ./node_modules/.cache/.eslintcache --ext js,jsx,ts,tsx .",
"postbuild": "NODE_OPTIONS='--experimental-json-modules' node ./scripts/generate-rss.mjs && node ./scripts/generate-sitemap.mjs",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md)\"",
"test:unit": "jest",
"test:e2e": "playwright test"
},
"dependencies": {
"@prisma/client": "5.22.0",
"@prisma/extension-accelerate": "^1.0.0",
"@vercel/analytics": "1.3.2",
"@vercel/og": "0.6.3",
"axios": "1.7.7",
"classnames": "2.5.1",
"date-fns": "4.1.0",
"himalaya": "1.1.0",
"html-attribute-to-react": "0.0.5",
"html-metadata-parser": "2.0.4",
"next": "^15.0.0",
"next-auth": "4.24.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "5.3.0",
"react-to-print": "3.0.2",
"recharts": "2.13.3",
"slugify": "1.6.6",
"swr": "2.2.5",
"use-delayed-render": "0.0.7"
},
"devDependencies": {
"@playwright/test": "1.48.2",
"@tailwindcss/typography": "0.5.15",
"@testing-library/react-hooks": "8.0.1",
"@types/jest": "29.5.14",
"@types/node": "22.9.0",
"@types/react": "18.3.12",
"autoprefixer": "10.4.20",
"eslint": "9.14.0",
"eslint-config-next": "^15.0.0",
"globby": "14.0.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"node-mocks-http": "1.16.1",
"postcss": "8.4.47",
"prettier": "3.3.3",
"prisma": "5.22.0",
"rss": "1.2.2",
"tailwindcss": "3.4.14",
"typescript": "5.6.3"
}
}