mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-11-09 22:08:58 +01:00
build(deps): update latest
This commit is contained in:
parent
939e7a57ac
commit
aabe22adbd
1869
package-lock.json
generated
1869
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
12
package.json
12
package.json
@ -43,24 +43,24 @@
|
|||||||
"ora": "5.4.1",
|
"ora": "5.4.1",
|
||||||
"replace-in-file": "6.2.0",
|
"replace-in-file": "6.2.0",
|
||||||
"table": "6.7.1",
|
"table": "6.7.1",
|
||||||
"typanion": "3.3.2",
|
"typanion": "3.5.0",
|
||||||
"validate-npm-package-name": "3.0.0"
|
"validate-npm-package-name": "3.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@commitlint/cli": "13.1.0",
|
"@commitlint/cli": "13.1.0",
|
||||||
"@commitlint/config-conventional": "13.1.0",
|
"@commitlint/config-conventional": "13.1.0",
|
||||||
"@types/date-and-time": "0.13.0",
|
"@types/date-and-time": "0.13.0",
|
||||||
"@types/jest": "27.0.1",
|
"@types/jest": "27.0.2",
|
||||||
"@types/mock-fs": "4.13.1",
|
"@types/mock-fs": "4.13.1",
|
||||||
"@types/node": "16.7.10",
|
"@types/node": "16.9.4",
|
||||||
"@types/validate-npm-package-name": "3.0.3",
|
"@types/validate-npm-package-name": "3.0.3",
|
||||||
"editorconfig-checker": "4.0.2",
|
"editorconfig-checker": "4.0.2",
|
||||||
"jest": "27.1.0",
|
"jest": "27.2.1",
|
||||||
"markdownlint-cli": "0.28.1",
|
"markdownlint-cli": "0.28.1",
|
||||||
"mock-fs": "5.0.0",
|
"mock-fs": "5.1.0",
|
||||||
"rimraf": "3.0.2",
|
"rimraf": "3.0.2",
|
||||||
"ts-jest": "27.0.5",
|
"ts-jest": "27.0.5",
|
||||||
"ts-standard": "10.0.0",
|
"ts-standard": "10.0.0",
|
||||||
"typescript": "4.4.2"
|
"typescript": "4.4.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM mono:6.12
|
FROM mono:6.12.0
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
COPY ./ ./
|
COPY ./ ./
|
||||||
RUN mcs ./Solution.cs -out:Solution.exe
|
RUN mcs ./Solution.cs -out:Solution.exe
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
FROM dart:2.13.4
|
FROM dart:2.14.2
|
||||||
COPY ./ ./
|
COPY ./ ./
|
||||||
CMD ["dart", "run", "solution.dart"]
|
CMD ["dart", "run", "solution.dart"]
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
FROM node:16.8.0
|
FROM node:16.9.1
|
||||||
COPY ./ ./
|
COPY ./ ./
|
||||||
CMD ["node", "solution.js"]
|
CMD ["node", "solution.js"]
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM rust:1.54.0
|
FROM rust:1.55.0
|
||||||
COPY ./ ./
|
COPY ./ ./
|
||||||
RUN rustc solution.rs
|
RUN rustc solution.rs
|
||||||
CMD ["./solution"]
|
CMD ["./solution"]
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM node:16.8.0
|
FROM node:16.9.1
|
||||||
RUN npm install --global ts-node typescript @types/node
|
RUN npm install --global ts-node typescript @types/node
|
||||||
COPY ./ ./
|
COPY ./ ./
|
||||||
CMD ["ts-node", "solution.ts"]
|
CMD ["ts-node", "solution.ts"]
|
||||||
|
Loading…
Reference in New Issue
Block a user