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 WORKDIR /app
COPY . . COPY . .
RUN npm install -g yarn RUN npm install && npm run build
RUN yarn install
RUN yarn build
RUN yarn cache clean
EXPOSE ${PORT} 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)\"" "format": "prettier --write --ignore-path .gitignore --plugin-search-dir=. \"./**/*.(ts|json|js|svelte)\""
}, },
"devDependencies": { "devDependencies": {
"@sveltejs/adapter-static": "1.0.0-next.21", "@sveltejs/adapter-static": "1.0.0-next.29",
"@sveltejs/kit": "1.0.0-next.195", "@sveltejs/kit": "1.0.0-next.303",
"@typescript-eslint/eslint-plugin": "5.3.0", "@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.3.0", "@typescript-eslint/parser": "5.17.0",
"cssnano": "5.0.10", "cssnano": "5.1.5",
"eslint": "8.2.0", "eslint": "8.12.0",
"eslint-config-prettier": "8.3.0", "eslint-config-prettier": "8.5.0",
"eslint-plugin-svelte3": "3.2.1", "eslint-plugin-svelte3": "3.4.1",
"prettier": "2.4.1", "prettier": "2.6.1",
"prettier-plugin-svelte": "2.4.0", "prettier-plugin-svelte": "2.6.0",
"svelte": "3.44.1", "svelte": "3.46.6",
"svelte-check": "2.2.8", "svelte-check": "2.4.6",
"svelte-preprocess": "4.9.8", "svelte-preprocess": "4.10.4",
"svelte-windicss-preprocess": "4.1.5", "svelte-windicss-preprocess": "4.2.6",
"tslib": "2.3.1", "tslib": "2.3.1",
"typescript": "4.4.4" "typescript": "4.6.3"
}, },
"dependencies": { "dependencies": {
"@fontsource/fira-mono": "4.5.0", "@fontsource/fira-mono": "4.5.7",
"@fontsource/rubik": "4.5.0", "@fontsource/rubik": "4.5.6",
"@sentry/browser": "6.14.1", "@sentry/browser": "6.19.3",
"dotenv": "10.0.0", "dotenv": "16.0.0",
"ohmyfetch": "0.4.5", "ohmyfetch": "0.4.15",
"svelte-i18n": "3.3.13" "svelte-i18n": "3.3.13"
} }
} }

View File

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

View File

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

View File

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