forked from duckdb-wasm-examples/react-typescript-shell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 866 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 866 Bytes
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
{
"name": "react-typescript-shell",
"private": true,
"license": "MIT",
"type":"module",
"scripts": {
"start": "webpack serve --config webpack.config.js",
"build": "webpack --config webpack.config.js"
},
"dependencies": {
"@duckdb/duckdb-wasm": "^1.13.1-dev230.0",
"@duckdb/duckdb-wasm-shell": "^1.13.1-dev230.0",
"apache-arrow": "^7.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"xterm": "^4.17.0",
"xterm-addon-fit": "^0.5.0",
"xterm-addon-web-links": "^0.5.1",
"xterm-addon-webgl": "^0.11.4"
},
"devDependencies": {
"@types/react-dom": "^17.0.11",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"style-loader": "^3.3.1",
"css-loader": "^6.6.0",
"ts-loader": "^9.2.2",
"typescript": "^4.5.5",
"html-webpack-plugin": "^5.5.0"
}
}