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

68 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 \"**/*.md\" --dot --ignore-path \".gitignore\"",
"lint:typescript": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"test": "tap"
},
"dependencies": {
"chalk": "5.0.1",
"clipanion": "3.0.1",
"date-and-time": "2.3.1",
"execa": "6.1.0",
"ora": "6.1.0",
"replace-in-file": "6.3.2",
"table": "6.8.0",
"typanion": "3.8.0",
"validate-npm-package-name": "4.0.0"
},
"devDependencies": {
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"@swc/cli": "0.1.57",
"@swc/core": "1.2.171",
"@types/sinon": "10.0.11",
"@types/tap": "15.0.6",
"@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",
"editorconfig-checker": "4.0.2",
"eslint": "8.14.0",
"eslint-config-conventions": "2.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-unicorn": "42.0.0",
"get-stream": "6.0.1",
"markdownlint-cli": "0.31.1",
"mock-fs": "5.1.2",
"ms": "2.1.3",
"rimraf": "3.0.2",
"sinon": "13.0.2",
"tap": "16.0.1",
"typescript": "4.6.3"
}
}