-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.22 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.22 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
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
{
"name": "duckdb-wasm-nextjs-typescript",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "npx eslint . --fix && prettier --write \"**/*.{js,ts,tsx}\"",
"e2e": "start-server-and-test dev http://localhost:3000 \"cypress open --e2e\"",
"e2e:headless": "start-server-and-test dev http://localhost:3000 \"cypress run --e2e\""
},
"dependencies": {
"@carlop/duckdb-wasm": "^1.13.0",
"@duckdb/duckdb-wasm-shell": "^1.24.0",
"@duckdb/react-duckdb": "^1.24.0",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@headlessui/react": "^1.7.14",
"@heroicons/react": "^2.0.18",
"@material-tailwind/react": "^2.0.0",
"@types/node": "18.15.11",
"@types/react": "18.0.33",
"@types/react-dom": "18.0.11",
"@vercel/analytics": "^1.0.1",
"allotment": "^1.18.1",
"apache-arrow": "^11.0.0",
"autoprefixer": "^10.4.14",
"eslint": "8.38.0",
"eslint-config-next": "13.3.0",
"fontfaceobserver": "^2.3.0",
"framer-motion": "^10.11.6",
"immutable": "^4.3.0",
"mapbox-gl": "^2.14.1",
"next": "13.2.4",
"next-themes": "^0.2.1",
"openai": "^3.2.1",
"postcss": "^8.4.23",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.8.0",
"react-usestateref": "^1.0.8",
"reactflow": "^11.7.0",
"rooks": "^7.14.1",
"simplebar-react": "^3.2.4",
"styled-components": "^5.3.9",
"tailwindcss": "3.3.1",
"typescript": "5.0.3",
"wkt": "^0.1.1",
"xterm": "^4.19.0",
"xterm-addon-fit": "^0.5.0",
"xterm-addon-web-links": "^0.5.1",
"xterm-addon-webgl": "^0.11.4"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@types/styled-components": "^5.1.26",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^11.0.0",
"cypress": "^12.11.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-unused-imports": "^2.0.0",
"next-transpile-modules": "^10.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.8.8",
"start-server-and-test": "^2.0.0",
"ts-loader": "^9.4.2"
},
"pre-commit": [
"format",
"lint"
]
}