-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
87 lines (87 loc) · 3.02 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
{
"name": "@deephaven/code-studio",
"version": "0.104.0",
"description": "Deephaven Code Studio",
"author": "Deephaven Data Labs LLC",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/deephaven/web-client-ui.git",
"directory": "packages/code-studio"
},
"dependencies": {
"@adobe/react-spectrum": "3.38.0",
"@deephaven/app-utils": "file:../app-utils",
"@deephaven/auth-plugins": "file:../auth-plugins",
"@deephaven/chart": "file:../chart",
"@deephaven/components": "file:../components",
"@deephaven/console": "file:../console",
"@deephaven/dashboard": "file:../dashboard",
"@deephaven/dashboard-core-plugins": "file:../dashboard-core-plugins",
"@deephaven/file-explorer": "file:../file-explorer",
"@deephaven/filters": "file:../filters",
"@deephaven/golden-layout": "file:../golden-layout",
"@deephaven/grid": "file:../grid",
"@deephaven/icons": "file:../icons",
"@deephaven/iris-grid": "file:../iris-grid",
"@deephaven/jsapi-bootstrap": "file:../jsapi-bootstrap",
"@deephaven/jsapi-components": "file:../jsapi-components",
"@deephaven/jsapi-shim": "file:../jsapi-shim",
"@deephaven/jsapi-types": "^1.0.0-dev0.37.2",
"@deephaven/jsapi-utils": "file:../jsapi-utils",
"@deephaven/log": "file:../log",
"@deephaven/plugin": "file:../plugin",
"@deephaven/pouch-storage": "file:../pouch-storage",
"@deephaven/react-hooks": "file:../react-hooks",
"@deephaven/redux": "file:../redux",
"@deephaven/storage": "file:../storage",
"@deephaven/utils": "file:../utils",
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"bowser": "^2.11.0",
"classnames": "^2.3.1",
"event-target-shim": "^6.0.2",
"jszip": "3.10.1",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"memoize-one": "^5.1.1",
"memoizee": "^0.4.15",
"monaco-editor": "^0.43.0",
"nanoid": "^5.0.7",
"pouchdb-browser": "^7.2.2",
"pouchdb-find": "^7.2.2",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"react-router-dom": "^5.1.2",
"react-transition-group": "^4.4.2",
"redux": "^4.2.0",
"redux-thunk": "^2.4.1"
},
"homepage": ".",
"main": "build/index.html",
"files": [
"build"
],
"scripts": {
"analyze": "source-map-explorer build/assets/*.js --no-border-checks",
"start": "vite",
"build": "NODE_OPTIONS='--max-old-space-size=4096' vite build",
"preview": "vite preview",
"update-licenses": "npm-license > licenses.txt"
},
"devDependencies": {
"@deephaven/eslint-config": "file:../eslint-config",
"@deephaven/mocks": "file:../mocks",
"@deephaven/prettier-config": "file:../prettier-config",
"@deephaven/stylelint-config": "file:../stylelint-config",
"@deephaven/test-utils": "file:../test-utils",
"autoprefixer": "^10.4.8"
},
"publishConfig": {
"access": "public"
}
}