-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@nejcm/js-algorithms",
"version": "0.0.0-semantically-released",
"author": "Nejc Mursic <nmursi2@gmail.com> (https://github.com/nejcm)",
"description": "Js algorithms.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nejcm/js-algorithms"
},
"bugs": {
"url": "https://github.com/nejc/js-algorithms/issues"
},
"homepage": "https://github.com/nejcm/js-algorithms",
"engines": {
"node": ">=18",
"yarn": ">=4.0.0"
},
"keywords": [
"javascript",
"js",
"algorithms",
"algorithm",
"javascript-algorithms",
"computer-science",
"cs",
"data-structures",
"sorting-algorithms",
"graph",
"tree"
],
"scripts": {
"clean": "rimraf dist coverage",
"format": "prettier ./src --write",
"lint": "eslint ./src",
"lint:ts": "tsc --noEmit",
"lint:fix": "yarn lint --fix",
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"validate": "yarn format && yarn lint",
"setup": "yarn install && yarn validate",
"semantic-release": "semantic-release"
},
"dependencies": {
"@docusaurus/core": "3.8.1",
"@docusaurus/preset-classic": "3.8.1",
"@mdx-js/react": "^3.1.0",
"clsx": "^2.1.1",
"prism-react-renderer": "~2.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/react": "^18.3.23",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"eslint": "^8.57.1",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.5",
"typescript": "^5.8.3"
},
"packageManager": "yarn@4.9.2"
}