1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-12-08 00:45:29 +01:00

build(deps): update latest

This commit is contained in:
Divlo 2022-08-30 13:42:44 +02:00
parent 244300408c
commit 6427b3d273
No known key found for this signature in database
GPG Key ID: 8F9478F220CE65E9
11 changed files with 2138 additions and 1769 deletions

11
.markdownlint-cli2.jsonc Normal file
View File

@ -0,0 +1,11 @@
{
"config": {
"default": true,
"MD013": false,
"MD024": false,
"MD033": false,
"MD041": false
},
"globs": ["**/*.{md,mdx}"],
"ignores": ["**/node_modules"]
}

View File

@ -1,7 +0,0 @@
{
"default": true,
"MD013": false,
"MD024": false,
"MD033": false,
"MD041": false
}

14
.swcrc
View File

@ -2,21 +2,11 @@
"jsc": {
"parser": {
"syntax": "typescript",
"decorators": true,
"dynamicImport": true
},
"transform": {
"legacyDecorator": true,
"decoratorMetadata": true
},
"target": "es2022",
"loose": true
"target": "es2022"
},
"module": {
"type": "es6",
"strict": false,
"strictMode": true,
"lazy": false,
"noInterop": false
"type": "es6"
}
}

3810
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -21,47 +21,48 @@
"build:dev": "swc ./src --out-dir ./build --watch",
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
"lint:markdown": "markdownlint \"**/*.md\" --dot --ignore-path \".gitignore\"",
"lint:markdown": "markdownlint-cli2",
"lint:typescript": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"test": "tap"
},
"dependencies": {
"chalk": "5.0.1",
"clipanion": "3.0.1",
"date-and-time": "2.3.1",
"date-and-time": "2.4.1",
"execa": "6.1.0",
"ora": "6.1.0",
"replace-in-file": "6.3.2",
"ora": "6.1.2",
"replace-in-file": "6.3.5",
"table": "6.8.0",
"typanion": "3.8.0",
"typanion": "3.9.0",
"validate-npm-package-name": "4.0.0"
},
"devDependencies": {
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@swc/cli": "0.1.57",
"@swc/core": "1.2.171",
"@types/sinon": "10.0.11",
"@types/tap": "15.0.6",
"@swc/core": "1.2.245",
"@types/sinon": "10.0.13",
"@types/tap": "15.0.7",
"@types/date-and-time": "0.13.0",
"@types/mock-fs": "4.13.1",
"@types/ms": "0.7.31",
"@types/node": "17.0.25",
"@types/validate-npm-package-name": "3.0.3",
"@typescript-eslint/eslint-plugin": "5.20.0",
"@types/node": "18.7.14",
"@types/validate-npm-package-name": "4.0.0",
"@typescript-eslint/eslint-plugin": "5.36.0",
"@typescript-eslint/parser": "5.36.0",
"editorconfig-checker": "4.0.2",
"eslint": "8.14.0",
"eslint-config-conventions": "2.0.0",
"eslint": "8.23.0",
"eslint-config-conventions": "3.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-unicorn": "42.0.0",
"eslint-plugin-promise": "6.0.1",
"eslint-plugin-unicorn": "43.0.2",
"get-stream": "6.0.1",
"markdownlint-cli": "0.31.1",
"mock-fs": "5.1.2",
"markdownlint-cli2": "0.5.1",
"mock-fs": "5.1.4",
"ms": "2.1.3",
"rimraf": "3.0.2",
"sinon": "13.0.2",
"tap": "16.0.1",
"typescript": "4.6.3"
"sinon": "14.0.0",
"tap": "16.3.0",
"typescript": "4.8.2"
}
}

View File

@ -1,4 +1,4 @@
FROM gcc:11.3.0
FROM gcc:12.2.0
WORKDIR /usr/app
COPY ./ /usr/app

View File

@ -1,4 +1,4 @@
FROM gcc:11.3.0
FROM gcc:12.2.0
WORKDIR /usr/app
COPY ./ /usr/app

View File

@ -1,4 +1,4 @@
FROM dart:2.16.2
FROM dart:2.17.7
WORKDIR /usr/app
COPY ./ /usr/app

View File

@ -1,4 +1,4 @@
FROM node:16.14.2
FROM node:16.17.0
WORKDIR /usr/app
COPY ./ /usr/app

View File

@ -1,4 +1,4 @@
FROM rust:1.60.0
FROM rust:1.63.0
WORKDIR /usr/app
COPY ./ /usr/app

View File

@ -1,4 +1,4 @@
FROM node:16.14.2
FROM node:16.17.0
WORKDIR /usr/app
COPY ./ /usr/app