1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/package.json
2022-09-22 16:16:21 +02:00

70 lines
2.0 KiB
JSON

{
"name": "programming-challenges",
"version": "1.0.0",
"description": "programming-challenges brings together lots of programming exercises and challenges to improve your algorithmic logic.",
"private": true,
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Divlo/programming-challenges"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"main": "build/index.js",
"bin": "build/index.js",
"scripts": {
"start": "node build/index.js",
"build": "rimraf ./build && swc ./cli --out-dir ./build && tsc",
"build:dev": "swc ./src --out-dir ./build --watch",
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
"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.4.1",
"execa": "6.1.0",
"log-symbols": "5.1.0",
"ora": "6.1.2",
"replace-in-file": "6.3.5",
"table": "6.8.0",
"typanion": "3.12.0",
"validate-npm-package-name": "4.0.0"
},
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@swc/cli": "0.1.57",
"@swc/core": "1.3.2",
"@types/date-and-time": "0.13.0",
"@types/mock-fs": "4.13.1",
"@types/ms": "0.7.31",
"@types/node": "18.7.18",
"@types/sinon": "10.0.13",
"@types/tap": "15.0.7",
"@types/validate-npm-package-name": "4.0.0",
"@typescript-eslint/eslint-plugin": "5.38.0",
"@typescript-eslint/parser": "5.38.0",
"editorconfig-checker": "4.0.2",
"eslint": "8.23.1",
"eslint-config-conventions": "4.0.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-promise": "6.0.1",
"eslint-plugin-unicorn": "43.0.2",
"get-stream": "6.0.1",
"markdownlint-cli2": "0.5.1",
"mock-fs": "5.1.4",
"ms": "2.1.3",
"rimraf": "3.0.2",
"sinon": "14.0.0",
"tap": "16.3.0",
"typescript": "4.8.3"
}
}