-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.75 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
{
"name": "@nbook/server",
"version": "0.1.0",
"description": "",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"start": "node ./lib/server",
"build-monaco-dependencies": "scripts/build-monaco-dependencies.sh"
},
"bin": {
"nbook": "./bin/nbook"
},
"files": [
"bin",
"build",
"lib",
"LICENSE",
"README.md"
],
"oclif": {
"commands": "./lib/commands"
},
"author": "Tomás Gonzalez Vivo <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/polyfill": "^7.8.7",
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/free-brands-svg-icons": "^5.12.1",
"@fortawesome/react-fontawesome": "^0.1.9",
"@material-ui/core": "^4.9.7",
"@material-ui/lab": "^4.0.0-alpha.46",
"bootstrap": "^4.4.1",
"css-tree": "^1.0.0-alpha.39",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"monaco-editor": "^0.20.0",
"monaco-languageclient": "^0.12.0",
"pretty-bytes": "^5.3.0",
"pretty-ms": "^6.0.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-keys": "^2.5.2",
"react-json-view": "^1.19.1",
"react-minimap": "^0.7.4",
"react-router-dom": "^5.1.2",
"recharts": "^1.8.5",
"sass": "^1.26.3",
"uuid": "^7.0.2"
},
"browserslist": [
"last 1 Chrome versions"
],
"dependencies": {
"@nbook/core": "^0.1.12",
"@nbook/language-service": "^0.1.2",
"@oclif/command": "^1.5.20",
"compression": "^1.7.4",
"express": "^4.17.1",
"globby": "^11.0.0",
"helmet": "^3.22.0",
"isbinaryfile": "^4.0.5",
"mime-types": "^2.1.26",
"parcel-bundler": "^1.12.4",
"ws": "^7.2.3"
}
}