-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "parquet-explorer",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"postinstall:copy-auth": "node -e \"require('fs').cpSync('node_modules/@junobuild/core-peer/dist/workers/', './public/workers', {recursive: true});\"",
"postinstall": "npm run postinstall:copy-auth"
},
"dependencies": {
"@duckdb/duckdb-wasm": "1.28.1-dev106.0",
"@junobuild/core-peer": "^0.1.0",
"duckdb-wasm-kit": "^0.1.38",
"nanoid": "^5.0.7",
"next": "14.2.7",
"react": "^18",
"react-dom": "^18",
"zod": "^3.23.8"
},
"devDependencies": {
"@junobuild/config": "^0.0.17",
"@junobuild/nextjs-plugin": "^0.0.13",
"@next/eslint-plugin-next": "^14.2.7",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-next": "14.2.7",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.10",
"typescript": "^5.3.3"
}
}