forked from Joeyonng/react-jupyter-notebook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·97 lines (97 loc) · 2.3 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "react-jupyter-notebook",
"version": "0.4.0",
"homepage": ".",
"license": "MIT",
"private": false,
"description": "A React component that renders .ipynb files and allows for code execution.",
"repository": {
"type": "git",
"url": "https://github.com/Desousak/react-jupyter-notebook"
},
"keywords": [
"React",
"Jupyter",
"Notebook",
"Execution",
"ipynb"
],
"author": {
"name": "Kevin Desousa",
"email": "[email protected]"
},
"files": [
"dist",
"src/lib",
"babel.config.js"
],
"main": "dist/index.js",
"dependencies": {
"@babel/cli": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@reduxjs/toolkit": "^1.8.6",
"ansi-to-react": "^6.1.6",
"compile": "^0.0.2",
"katex": "^0.16.2",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"react-icons": "^4.4.0",
"react-markdown": "^8.0.3",
"react-redux": "^8.0.4",
"react-simple-code-editor": "^0.13.1",
"react-syntax-highlighter": "^15.5.0",
"redux": "^4.2.0",
"rehype-katex": "^6.0.2",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1"
},
"devDependencies": {
"@jupyterlab/services": "*",
"@lumino/coreutils": "*",
"@lumino/disposable": "*",
"@lumino/signaling": "^1.10.2",
"gh-pages": "^4.0.0",
"http-proxy-middleware": "^2.0.6",
"react-scripts": "^5.0.1",
"react-select": "^5.5.6",
"sass": "^1.55.0",
"uuid": "^9.0.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"overrides": {
"ansi-to-react": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "export $(cat .env | xargs) && react-scripts start",
"build": "export $(cat .env | xargs) && react-scripts build",
"install": "npm run compile",
"compile": "NODE_ENV=production npx babel src/lib -d dist --copy-files",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}