forked from payloadcms/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.4 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
{
"name": "payload-website",
"version": "1.0.4",
"private": true,
"type": "module",
"scripts": {
"fetchDocs": "yarn fetchDocs:latest && yarn fetchDocs:beta && yarn fetchDocs:legacy",
"fetchDocs:stable": "node scripts/fetch-docs.mjs",
"fetchDocs:latest": "node scripts/fetch-docs.mjs --ref main",
"fetchDocs:beta": "node scripts/fetch-docs.mjs --ref beta --output ./src/app/docs-beta.json",
"fetchDocs:legacy": "node scripts/fetch-docs.mjs --ref v2.16.1 --output ./src/app/docs-legacy.json",
"fetchDocs:local": "node scripts/fetch-docs-local.mjs",
"dev": "next dev",
"nodocs:build": "next build",
"build": "yarn fetchDocs && next build",
"build:skipDocs": "next build",
"postbuild": "next-sitemap --config ./next-sitemap.config.cjs",
"analyze": "ANALYZE=true next build",
"caddy": "caddy run --config Caddyfile",
"start": "next start",
"lint": "next lint",
"prettier:fix": "prettier --write ."
},
"dependencies": {
"@docsearch/js": "^3.3.0",
"@faceless-ui/collapsibles": "^2.0.0-beta.0",
"@faceless-ui/css-grid": "^1.2.1",
"@faceless-ui/modal": "^3.0.0-beta.0",
"@faceless-ui/mouse-info": "^2.0.0-beta.0",
"@faceless-ui/scroll-info": "^2.0.0-beta.0",
"@faceless-ui/slider": "^2.0.0-beta.0",
"@faceless-ui/window-info": "^3.0.0-beta.0",
"@next/bundle-analyzer": "^13.4.2",
"@sentry/nextjs": "^7.80.1",
"@splinetool/react-spline": "^2.2.6",
"@splinetool/runtime": "^1.3.0",
"@stripe/react-stripe-js": "^1.16.5",
"@stripe/stripe-js": "^1.47.0",
"@types/react-dom": "^18.2.15",
"@vercel/og": "^0.0.21",
"algoliasearch": "^4.23.3",
"cheerio": "^1.0.0-rc.12",
"discord-markdown": "^2.5.1",
"dotenv": "^16.0.3",
"escape-html": "^1.0.3",
"eslint-config-next": "^14.0.2",
"flatley": "^5.2.0",
"framer-motion": "^11.0.3",
"graphql": "^16.6.0",
"gray-matter": "^4.0.3",
"instantsearch.js": "^4.72.2",
"next": "^14.0.2",
"next-mdx-remote": "^5.0.0",
"next-sitemap": "^4.0.6",
"node-fetch": "^3.3.1",
"payload-admin-bar": "^1.0.6",
"prism-react-renderer": "^2.3.1",
"react": "^18.2.0",
"react-animate-height": "^3.0.4",
"react-cookie": "^4.1.1",
"react-dom": "^18.2.0",
"react-facebook-pixel": "^1.0.4",
"react-fast-marquee": "^1.5.2",
"react-instantsearch": "^7.11.4",
"react-markdown": "^9.0.1",
"react-select": "^5.8.0",
"react-toastify": "^9.1.2",
"react-transition-group": "^4.4.5",
"remark-gfm": "^4.0.0",
"sass": "^1.55.0",
"sharp": "^0.31.1",
"stripe": "^11.11.0",
"ts-node": "^10.9.1",
"unist-util-visit": "^2.0.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.1.6",
"@octokit/types": "^9.0.0",
"@payloadcms/eslint-config": "^1.1.1",
"@types/cli-progress": "^3.11.0",
"@types/node": "18.11.3",
"@types/react": "^18.2.37",
"@types/react-select": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"cli-progress": "^3.11.2",
"discord.js": "^14.7.1",
"eslint": "8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^2.7.1",
"typescript": "^5.4.5"
}
}