forked from TheAlgorithms/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.05 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
{
"name": "thealgorithms",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"debug": "NODE_OPTIONS='--inspect' next dev",
"build": "yarn fetch-algorithms && next build",
"start": "next start",
"export": "yarn build && next export",
"fetch-algorithms": "ts-node scripts/fetch-algorithms.ts",
"lint": "tsc && eslint ./",
"lint-fix": "eslint ./ --fix"
},
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/styles": "^4.11.4",
"atob": "^2.1.2",
"btoa": "^1.2.1",
"dotenv": "^8.6.0",
"highlight.js": "10.7.2",
"katex": "^0.13.11",
"next": "^10.2.2",
"next-i18next": "^8.3.0",
"nextjs-progressbar": "^0.0.8",
"node-fetch": "^2.6.1",
"notebookjs": "^0.6.4",
"ora": "^5.4.0",
"react": "^17.0.2",
"react-devicons": "^2.11.0-rev.2",
"react-dom": "^17.0.2",
"rehype-highlight": "^4.0.1",
"rehype-stringify": "^8.0.0",
"remark-gfm": "^1.0.0",
"remark-parse": "^9.0.0",
"remark-rehype": "^8.1.0",
"sanitize-html": "^2.4.0",
"title-case": "^3.0.3",
"unified": "^9.2.1"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@types/atob": "^2.1.2",
"@types/btoa": "^1.2.3",
"@types/cli-progress": "^3.9.1",
"@types/jsdom": "^16.2.10",
"@types/node": "^14.17.0",
"@types/node-fetch": "^2.5.10",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.6",
"@types/sanitize-html": "^2.3.1",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}