-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.17 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.17 KB
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
{
"name": "perspective-gemini",
"version": "0.0.1",
"description": "A demo using @finos/perspective, perspective-python, and the Gemini API sandbox to visualize and analyse an order book.",
"main": "./dist/index.js",
"browser": "./dist/index.js",
"private": true,
"scripts": {
"start:client": "webpack serve",
"start:server": "python3 src/server/server.py",
"build": "webpack --color"
},
"keywords": [],
"license": "Apache-2.0",
"dependencies": {
"@finos/perspective": "^0.10.0",
"@finos/perspective-viewer": "^0.10.0",
"@finos/perspective-viewer-d3fc": "^0.10.0",
"@finos/perspective-viewer-datagrid": "^0.10.0",
"@finos/perspective-workspace": "^0.10.0"
},
"devDependencies": {
"@finos/perspective-webpack-plugin": "^0.10.0",
"html-webpack-plugin": "^5.3.2",
"http-server": "^0.11.1",
"less": "^4.1.1",
"less-loader": "^10.0.1",
"npm-run-all": "^4.1.3",
"postcss-loader": "^6.1.1",
"rimraf": "^2.5.2",
"source-map-loader": "^3.0.0",
"string-replace-loader": "^3.0.3",
"style-loader": "^3.0.0",
"webpack": "^5.43.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}