-
Notifications
You must be signed in to change notification settings - Fork 131
/
package.json
77 lines (77 loc) · 2.78 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
{
"name": "@duckdb/duckdb-wasm-app",
"version": "1.11.0",
"description": "",
"author": "Andre Kohn <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start": "webpack serve --config webpack.debug.js",
"start:corp": "webpack serve --config webpack.debug.corp.js",
"build:debug": "NODE_OPTIONS='--max-old-space-size=4096' webpack --config webpack.debug.js",
"build:release": "NODE_OPTIONS='--max-old-space-size=4096' webpack --config webpack.release.js",
"analyze:debug": "webpack --config webpack.debug.js --analyze",
"analyze:release": "webpack --config webpack.release.js --analyze",
"lint": "eslint src"
},
"engines": {
"node": ">=14.13"
},
"dependencies": {
"@duckdb/duckdb-wasm": "file:../duckdb-wasm",
"@duckdb/duckdb-wasm-shell": "file:../duckdb-wasm-shell",
"apache-arrow": "^17.0.0",
"bootstrap": "^5.3.3",
"classnames": "^2.5.1",
"framer-motion": "^11.0.3",
"immutable": "^4.3.6",
"rc-scrollbars": "^1.1.6",
"react": "^18.2.0",
"react-bootstrap": "^2.9.2",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-popper-tooltip": "^4.4.2",
"react-router-dom": "^6.26.1",
"react-virtualized": "9.22.5",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"xterm-addon-web-links": "^0.9.0",
"xterm-addon-webgl": "^0.16.0",
"fontfaceobserver": "^2.3.0"
},
"devDependencies": {
"@types/fontfaceobserver": "^2.1.3",
"@types/node": "^20.12.7",
"@types/react-dom": "^18.2.17",
"@types/react-router-dom": "^5.3.3",
"@types/react-virtualized": "^9.21.29",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.10.0",
"eslint": "^8.57.0",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-react": "^7.34.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"jasmine-core": "^5.1.2",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-jasmine": "^5.1.0",
"karma-spec-reporter": "^0.0.36",
"karma-webpack": "^5.0.0",
"mini-css-extract-plugin": "^2.8.0",
"source-map-loader": "^5.0.0",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"typescript-plugin-css-modules": "^5.0.2",
"webpack": "^5.90.3",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpackbar": "^6.0.0"
},
"type": "module"
}