mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-22 19:19:50 -04:00
Compare commits
3 Commits
979fdee23f
...
b708792702
Author | SHA1 | Date | |
---|---|---|---|
|
b708792702 | ||
|
259fa9546d | ||
|
073517dea2 |
5
.vscode/settings.json
vendored
5
.vscode/settings.json
vendored
|
@ -3,5 +3,8 @@
|
||||||
"backend"
|
"backend"
|
||||||
],
|
],
|
||||||
"python.testing.unittestEnabled": false,
|
"python.testing.unittestEnabled": false,
|
||||||
"python.testing.pytestEnabled": true
|
"python.testing.pytestEnabled": true,
|
||||||
|
"eslint.workingDirectories": [
|
||||||
|
"./compass",
|
||||||
|
]
|
||||||
}
|
}
|
|
@ -1,3 +1,5 @@
|
||||||
{
|
{
|
||||||
"extends": "next/core-web-vitals"
|
"extends": [
|
||||||
|
"next"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -78,12 +78,12 @@ export default function ServiceTable({ data, setData }: ServiceTableProps) {
|
||||||
),
|
),
|
||||||
cell: (info) => (
|
cell: (info) => (
|
||||||
// TODO: Setup different tag handler for requirements
|
// TODO: Setup different tag handler for requirements
|
||||||
<TagsInput
|
(<TagsInput
|
||||||
presetValue={
|
presetValue={
|
||||||
info.getValue()[0] !== "" ? info.getValue() : ["N/A"]
|
info.getValue()[0] !== "" ? info.getValue() : ["N/A"]
|
||||||
}
|
}
|
||||||
{...requirementProps}
|
{...requirementProps}
|
||||||
/>
|
/>)
|
||||||
),
|
),
|
||||||
}),
|
}),
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
/** @type {import('next').NextConfig} */
|
/** @type {import('next').NextConfig} */
|
||||||
const nextConfig = {
|
const nextConfig = {
|
||||||
images: {
|
images: {
|
||||||
domains: ["notioly.com"],
|
remotePatterns: [
|
||||||
},
|
{
|
||||||
experimental: {
|
hostname: "notioly.com",
|
||||||
serverActions: true,
|
},
|
||||||
|
],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
7757
compass/package-lock.json
generated
7757
compass/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
|
@ -10,28 +10,32 @@
|
||||||
"prettier": "npx prettier --write \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
|
"prettier": "npx prettier --write \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@heroicons/react": "^2.1.1",
|
"@heroicons/react": "^2.2.0",
|
||||||
"@supabase/ssr": "^0.3.0",
|
"@supabase/ssr": "^0.5.2",
|
||||||
"@supabase/supabase-js": "^2.42.3",
|
"@supabase/supabase-js": "^2.42.3",
|
||||||
"@tanstack/match-sorter-utils": "^8.15.1",
|
"@tanstack/match-sorter-utils": "^8.15.1",
|
||||||
"@tanstack/react-table": "^8.15.0",
|
"@tanstack/react-table": "^8.15.0",
|
||||||
"bufferutil": "^4.0.8",
|
"bufferutil": "^4.0.8",
|
||||||
"next": "13.5.6",
|
"next": "14.2.18",
|
||||||
"react": "^18",
|
"react": "18.3.1",
|
||||||
"react-dom": "^18",
|
"react-dom": "18.3.1",
|
||||||
"utf-8-validate": "^6.0.3",
|
"utf-8-validate": "^6.0.3",
|
||||||
"ws": "^8.16.0"
|
"ws": "^8.16.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^20",
|
"@types/node": "^20",
|
||||||
"@types/react": "^18",
|
"@types/react": "18.3.12",
|
||||||
"@types/react-dom": "^18",
|
"@types/react-dom": "18.3.1",
|
||||||
"autoprefixer": "^10",
|
"autoprefixer": "^10",
|
||||||
"eslint": "^8",
|
"eslint": "^8",
|
||||||
"eslint-config-next": "13.5.6",
|
"eslint-config-next": "14.2.18",
|
||||||
"lint-staged": "^15.2.2",
|
"lint-staged": "^15.2.2",
|
||||||
"postcss": "^8",
|
"postcss": "^8",
|
||||||
"tailwindcss": "^3",
|
"tailwindcss": "^3",
|
||||||
"typescript": "^5"
|
"typescript": "^5"
|
||||||
|
},
|
||||||
|
"overrides": {
|
||||||
|
"@types/react": "18.3.12",
|
||||||
|
"@types/react-dom": "18.3.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user