Files
zk-stats-demo/package.json
mhchia d32299bf5d feat: align latest zkstats lib and print srs path
- add generate_data_commitment.ipynb for data providers to commit to data
- change template.ipynb
	- support commitment and selected columns
	- print srs path. need to copy the srs from the path under `assets/out`
		to make verifyProof work
- modify page.tsx to work with generated data
2024-04-11 00:19:32 +08:00

29 lines
581 B
JSON

{
"name": "demo-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@ezkljs/engine": "9.1.0",
"next": "14.0.4",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}