-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
85 lines (85 loc) · 2.21 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
{
"name": "@openchemistry/jupyterlab",
"version": "0.1.3",
"description": "A JupyterLab extension for rendering CJSON",
"author": "Kitware",
"main": "lib/index.js",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"**/*.css"
],
"directories": {
"lib": "lib/"
},
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab extension"
],
"jupyterlab": {
"mimeExtension": true
},
"scripts": {
"build": "webpack --mode development",
"watch": "npm run build -- --watch",
"clean": "rimraf lib"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@jupyterlab/application": "^3.0.2",
"@lumino/coreutils": "^1.5.3",
"@lumino/widgets": "^1.17.0",
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^3.0.2",
"@openchemistry/energy-plot": "^0.1.38",
"@openchemistry/girder-redux": "^0.0.38",
"@openchemistry/girder-client": "^0.0.29",
"@openchemistry/molecule": "^0.4.37",
"@openchemistry/redux": "^0.3.34",
"@openchemistry/sagas": "^0.3.51",
"@types/redux-logger": "^3.0.7",
"core-js": "^2.6.5",
"enumify": "^1.0.4",
"lodash": "^4.17.11",
"lodash-es": "^4.17.11",
"prop-types": "^15.7.2",
"react-redux": "^6.0.1",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-saga": "^0.16.2",
"universal-cookie": "^3.0.7"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@openchemistry/types": "^0.8.5",
"@types/core-js": "^2.5.0",
"@types/lodash": "^4.14.121",
"@types/material-ui": "^0.21.6",
"@types/react": "^16.8.6",
"@types/react-dom": "^16.8.2",
"@types/react-redux": "^7.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-lodash": "^3.3.4",
"copyfiles": "^2.1.0",
"css-loader": "^2.1.0",
"lodash-webpack-plugin": "^0.11.5",
"reselect": "^4.0.0",
"rimraf": "^2.6.3",
"to-string-loader": "^1.1.5",
"ts-loader": "^5.3.3",
"typescript": "~3.3.3333",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"publishConfig": {
"access": "public"
}
}