Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
976 changes: 976 additions & 0 deletions client/package-lock.json

Large diffs are not rendered by default.

63 changes: 34 additions & 29 deletions client/package.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,37 @@
{
"name": "client",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"next": "latest",
"react": "latest",
"react-dom": "latest"
},
"devDependencies": {
"@types/node": "^24.0.12",
"@types/react": "^19.1.8",
"@types/react-dom": "latest",
"typescript": "^5.8.3"
},
"eslintConfig": {
"extends": "next/core-web-vitals"
},
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
]
"name": "client",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"next": "^16.2.6",
"react": "^19.2.6",
"react-dom": "^19.2.6"
Comment on lines +10 to +13
},
"devDependencies": {
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"typescript": "^6.0.3"
},
"eslintConfig": {
"extends": "next/core-web-vitals"
},
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
]
}
},
"overrides": {
"postcss": "^8.5.15",
"js-yaml": "^4.1.1",
"picomatch": "^4.0.4"
}
Comment on lines +32 to 36
}
}
494 changes: 148 additions & 346 deletions client/yarn.lock

Large diffs are not rendered by default.

52 changes: 26 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
{
"name": "contentful-admin",
"version": "1.0.0",
"description": "This is an administrative tool for interacting with contentful",
"keywords": [
"contentful",
"administrative"
],
"homepage": "https://github.com/CrashBytes/contentful-admin#readme",
"bugs": {
"url": "https://github.com/CrashBytes/contentful-admin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CrashBytes/contentful-admin.git"
},
"license": "ISC",
"author": "Michael Eakins",
"type": "commonjs",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "concurrently \"yarn --cwd client dev\" \"yarn --cwd server dev\""
},
"dependencies": {
"concurrently": "^9.2.0"
}
"name": "contentful-admin",
"version": "1.0.0",
"description": "This is an administrative tool for interacting with contentful",
"keywords": [
"contentful",
"administrative"
],
"homepage": "https://github.com/CrashBytes/contentful-admin#readme",
"bugs": {
"url": "https://github.com/CrashBytes/contentful-admin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CrashBytes/contentful-admin.git"
},
"license": "ISC",
"author": "Michael Eakins",
"type": "commonjs",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "concurrently \"yarn --cwd client dev\" \"yarn --cwd server dev\""
},
Comment on lines +21 to +24
"dependencies": {
"concurrently": "^9.2.1"
Comment on lines +23 to +26
}
}
Loading