-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.9 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.9 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
{
"name": "csclub-cms",
"version": "1.0.0",
"description": "The Computer Science Club's CMS",
"license": "MIT",
"type": "module",
"scripts": {
"build": "cross-env NODE_OPTIONS=--no-deprecation next build",
"dev": "cross-env NODE_OPTIONS=--no-deprecation next dev -p 4000",
"devsafe": "rm -rf .next && cross-env NODE_OPTIONS=--no-deprecation next dev",
"generate:importmap": "cross-env NODE_OPTIONS=--no-deprecation payload generate:importmap",
"generate:types": "cross-env NODE_OPTIONS=--no-deprecation payload generate:types",
"lint": "cross-env NODE_OPTIONS=--no-deprecation eslint .",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css,json,mjs,cjs,yaml}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,css,json,mjs,cjs,yaml}\"",
"payload": "cross-env NODE_OPTIONS=--no-deprecation payload",
"start": "cross-env NODE_OPTIONS=--no-deprecation next start -p 4000"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.988.0",
"@payloadcms/db-mongodb": "latest",
"@payloadcms/next": "latest",
"@payloadcms/richtext-lexical": "latest",
"@payloadcms/storage-s3": "latest",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"axios": "^1.13.5",
"cors": "^2.8.6",
"cross-env": "^7.0.3",
"graphql": "^16.12.0",
"mime": "^4.1.0",
"next": "^16.1.6",
"next-auth": "5.0.0-beta.30",
"payload": "latest",
"payload-authjs": "^0.10.1",
"prettier-plugin-jsdoc": "^1.8.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sharp": "^0.32.6",
"slugify": "^1.6.6"
},
"devDependencies": {
"@types/node": "^22.19.11",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.6",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"sharp"
]
}
}