chore: bump dependencies

This commit is contained in:
Reinaldy Rafli 2022-03-31 22:03:32 +07:00
parent 4da50ef0e5
commit dee876840a
No known key found for this signature in database
GPG Key ID: 748A8EC5DB8653E8
7 changed files with 1424 additions and 1305 deletions

View File

@ -1,14 +1,11 @@
FROM node:14.17.3-buster
FROM node:16.13-bullseye
WORKDIR /app
COPY . .
RUN npm install -g yarn
RUN yarn install
RUN yarn build
RUN yarn cache clean
RUN npm install && npm run build
EXPOSE ${PORT}
CMD ["yarn", "preview"]
CMD ["npm", "run", "preview"]

2665
client/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -20,29 +20,29 @@
"format": "prettier --write --ignore-path .gitignore --plugin-search-dir=. \"./**/*.(ts|json|js|svelte)\""
},
"devDependencies": {
"@sveltejs/adapter-static": "1.0.0-next.21",
"@sveltejs/kit": "1.0.0-next.195",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"cssnano": "5.0.10",
"eslint": "8.2.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-svelte3": "3.2.1",
"prettier": "2.4.1",
"prettier-plugin-svelte": "2.4.0",
"svelte": "3.44.1",
"svelte-check": "2.2.8",
"svelte-preprocess": "4.9.8",
"svelte-windicss-preprocess": "4.1.5",
"@sveltejs/adapter-static": "1.0.0-next.29",
"@sveltejs/kit": "1.0.0-next.303",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"cssnano": "5.1.5",
"eslint": "8.12.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-svelte3": "3.4.1",
"prettier": "2.6.1",
"prettier-plugin-svelte": "2.6.0",
"svelte": "3.46.6",
"svelte-check": "2.4.6",
"svelte-preprocess": "4.10.4",
"svelte-windicss-preprocess": "4.2.6",
"tslib": "2.3.1",
"typescript": "4.4.4"
"typescript": "4.6.3"
},
"dependencies": {
"@fontsource/fira-mono": "4.5.0",
"@fontsource/rubik": "4.5.0",
"@sentry/browser": "6.14.1",
"dotenv": "10.0.0",
"ohmyfetch": "0.4.5",
"@fontsource/fira-mono": "4.5.7",
"@fontsource/rubik": "4.5.6",
"@sentry/browser": "6.19.3",
"dotenv": "16.0.0",
"ohmyfetch": "0.4.15",
"svelte-i18n": "3.3.13"
}
}

View File

@ -57,5 +57,5 @@
</div>
</div>
<style windi:preflights:global windi:safelist:global>
<style windi:global windi:preflights:global windi:safelist:global>
</style>

View File

@ -8,7 +8,8 @@ const config = {
// for more information about preprocessors
preprocess: [
windi({
configPath: './windi.config.js',
configPath: './windi.config.ts',
preflights: false,
}),
preprocess({ postcss: false }),
],

View File

@ -1,4 +1,5 @@
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"moduleResolution": "node",
"module": "es2020",
@ -23,6 +24,7 @@
"allowJs": true,
"checkJs": true,
"paths": {
"$lib":["src/lib"],
"$lib/*":["src/lib/*"]
}
},