forked from nteract/commuter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.85 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": "@nteract/commuter",
"version": "5.11.0",
"description": "share, publish, and discover notebooks",
"main": "lib/index.js",
"scripts": {
"predev": "npm run build:server",
"dev": "NODE_ENV=development node lib/index.js",
"prestart": "npm run build:all",
"start": "NODE_ENV=production node lib/index.js",
"build": "npm run build:all",
"build:frontend-for-production": "next build",
"build:server": "babel src -d lib",
"build:all": "npm run build:server && npm run build:frontend-for-production",
"prepublishOnly": "npm run build:all",
"test": "jest"
},
"bin": {
"commuter": "lib/bin.js"
},
"jest": {
"testRegex": "tests"
},
"repository": "nteract/nteract",
"keywords": [
"nteract",
"jupyter",
"s3",
"notebook"
],
"author": "nteract contributors",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/nteract/nteract/issues"
},
"homepage": "https://github.com/nteract/nteract/tree/master/applications/commuter#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@babel/cli": "7.5.0",
"@babel/core": "7.5.4",
"@babel/plugin-proposal-class-properties": "7.5.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-object-rest-spread": "7.5.4",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-react-jsx-source": "7.5.0",
"@babel/plugin-transform-runtime": "7.5.0",
"@babel/preset-env": "7.5.4",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
"@babel/runtime": "7.5.4",
"@babel/runtime-corejs2": "^7.5.4",
"@babel/template": "7.4.4",
"@google-cloud/storage": "^3.3.1",
"@nteract/directory-listing": "^2.0.4",
"@nteract/markdown": "^4.0.0",
"@nteract/notebook-preview": "^11.0.4-alpha.0",
"@nteract/octicons": "^2.0.0",
"@nteract/presentational-components": "^3.0.5",
"@nteract/transform-vega": "^7.0.0",
"@nteract/transforms": "^5.0.4-alpha.0",
"@nteract/webpack-configurator": "^3.0.0",
"aws-sdk": "^2.491.0",
"body-parser": "^1.19.0",
"bodybuilder": "^2.2.17",
"canvas": "2.7.0",
"d3-dsv": "^1.1.1",
"d3-voronoi": "^1.1.4",
"elasticsearch": "^16.3.0",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"jquery": "^3.4.1",
"jsonfile": "^5.0.0",
"lodash": "4.17.21",
"lodash.merge": "4.6.2",
"log": "^6.0.0",
"morgan": "^1.7.0",
"nbschema": "^0.1.0",
"next": "11.1.3",
"node-fetch": "^2.6.0",
"nprogress": "^0.2.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.12.6",
"react-timeago": "^4.4.0",
"s3-proxy": "^1.2.1",
"util": "^0.12.1",
"winston": "^3.2.1",
"xhr2": "0.2.0",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"jest": "^24.8.0"
}
}