-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.94 KB
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": "bside-payload",
"description": "B-Side Website Backend",
"version": "1.0.0",
"type": "module",
"license": "MIT",
"packageManager": "yarn@4.9.2",
"scripts": {
"ts-check": "tsc --noEmit --pretty",
"ts-check:watch": "yarn ts-check --watch --preserveWatchOutput",
"dev": "next dev",
"build": "next build",
"copyfiles": "copyfiles -u 1 \"src/**/*.{html,css,scss,ttf,woff,woff2,eot,svg,jpg,png}\" dist/",
"generate:importmap": "payload generate:importmap",
"generate:types": "payload generate:types",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"payload": "payload",
"start": "next start",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write"
},
"dependencies": {
"@payloadcms/db-mongodb": "^3.68.1",
"@payloadcms/next": "^3.68.1",
"@payloadcms/plugin-nested-docs": "^3.68.1",
"@payloadcms/plugin-redirects": "^3.68.1",
"@payloadcms/plugin-seo": "^3.68.1",
"@payloadcms/richtext-slate": "^3.68.1",
"@payloadcms/ui": "^3.68.1",
"axios": "1.13.2",
"date-fns": "^4.1.0",
"dotenv": "^16.6.1",
"graphql": "^16.12.0",
"lodash-es": "^4.17.21",
"next": "^15.5.7",
"passport": "^0.7.0",
"payload": "^3.68.1",
"payload-blurhash-plugin": "^3.1.0",
"payload-oauth2": "^1.0.19",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"sharp": "0.34.5",
"yarn": "2.0.0-rc.24"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.10.0",
"@types/passport": "^1.0.17",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^9.39.1",
"eslint-config-next": "^16.0.8",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3"
}
}