1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-10-29 22:17:23 +01:00
programming-challenges/package.json

69 lines
2.0 KiB
JSON
Raw Normal View History

2020-07-05 15:48:51 +02:00
{
"name": "programming-challenges",
2020-12-09 12:42:12 +01:00
"version": "1.0.0",
"description": "programming-challenges brings together lots of programming exercises and challenges to improve your algorithmic logic.",
"private": true,
"type": "module",
2020-12-09 12:42:12 +01:00
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Divlo/programming-challenges"
2020-12-09 12:42:12 +01:00
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"main": "build/index.js",
"bin": "build/index.js",
2020-07-05 15:48:51 +02:00
"scripts": {
"start": "node build/index.js",
2022-02-19 18:30:29 +01:00
"build": "rimraf ./build && swc ./cli --out-dir ./build && tsc",
"build:dev": "swc ./src --out-dir ./build --watch",
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
2022-08-30 13:42:44 +02:00
"lint:markdown": "markdownlint-cli2",
2022-02-19 18:30:29 +01:00
"lint:typescript": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"test": "tap"
2020-07-05 15:48:51 +02:00
},
2020-12-27 12:26:10 +01:00
"dependencies": {
"chalk": "5.0.1",
"clipanion": "3.0.1",
2022-08-30 13:42:44 +02:00
"date-and-time": "2.4.1",
"execa": "6.1.0",
2022-08-30 13:42:44 +02:00
"ora": "6.1.2",
"replace-in-file": "6.3.5",
2022-02-19 18:30:29 +01:00
"table": "6.8.0",
2022-08-30 13:42:44 +02:00
"typanion": "3.9.0",
"validate-npm-package-name": "4.0.0"
2020-12-27 12:26:10 +01:00
},
"devDependencies": {
2022-08-30 13:42:44 +02:00
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@swc/cli": "0.1.57",
2022-08-30 13:42:44 +02:00
"@swc/core": "1.2.245",
"@types/sinon": "10.0.13",
"@types/tap": "15.0.7",
2020-12-27 12:26:10 +01:00
"@types/date-and-time": "0.13.0",
"@types/mock-fs": "4.13.1",
"@types/ms": "0.7.31",
2022-08-30 13:42:44 +02:00
"@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",
2022-08-30 13:42:44 +02:00
"eslint": "8.23.0",
"eslint-config-conventions": "3.0.0",
"eslint-plugin-import": "2.26.0",
2022-08-30 13:42:44 +02:00
"eslint-plugin-promise": "6.0.1",
"eslint-plugin-unicorn": "43.0.2",
"get-stream": "6.0.1",
2022-08-30 13:42:44 +02:00
"markdownlint-cli2": "0.5.1",
"mock-fs": "5.1.4",
"ms": "2.1.3",
"rimraf": "3.0.2",
2022-08-30 13:42:44 +02:00
"sinon": "14.0.0",
"tap": "16.3.0",
"typescript": "4.8.2"
2020-07-05 15:48:51 +02:00
}
}