forked from TheAlgorithms/website
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.45 KB
/
package.json
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
{
"name": "thealgorithms",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"debug": "NODE_OPTIONS='--inspect' next dev",
"fetch-algorithms": "ts-node scripts/fetch-algorithms.ts",
"build": "yarn fetch-algorithms && yarn build:next",
"build:next": "next build",
"start": "next start",
"export": "yarn build && next export",
"lint": "tsc && eslint ./",
"lint-fix": "eslint ./ --fix"
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@material-ui/styles": "^4.11.4",
"@monaco-editor/react": "^4.3.1",
"@octokit/core": "^3.4.0",
"atob": "^2.1.2",
"btoa": "^1.2.1",
"chalk": "^4.1.2",
"devicon": "^2.14.0",
"dotenv": "^10.0.0",
"highlight.js": "^11.4.0",
"iframe-resizer-react": "^1.1.0",
"katex": "^0.13.24",
"next": "^12.1.0",
"next-i18next": "^8.10.0",
"next-query-params": "^2.1.2",
"nextjs-progressbar": "^0.0.13",
"node-fetch": "^3.2.0",
"notebookjs": "^0.6.6",
"ora": "<6.0.0",
"pyodide": "^0.18.2",
"react": "^17.0.2",
"react-devicons": "^2.11.0-rev.2",
"react-dom": "^17.0.2",
"rehype-highlight": "<5.0.0",
"rehype-stringify": "<9.0.0",
"remark-gfm": "<2.0.0",
"remark-parse": "<10.0.0",
"remark-rehype": "<9.0.0",
"sanitize-html": "^2.6.1",
"title-case": "^3.0.3",
"unified": "<10.0.0",
"xterm-addon-fit": "^0.5.0",
"xterm-for-react": "^1.0.4"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@types/atob": "^2.1.2",
"@types/btoa": "^1.2.3",
"@types/cli-progress": "^3.9.2",
"@types/jsdom": "^16.2.14",
"@types/node": "^16.11.21",
"@types/node-fetch": "^3.0.3",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.38",
"@types/sanitize-html": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "<8.0.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "^12.0.9",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
}
}