ZKP-License-System/test-frontend/package.json

25 lines
726 B
JSON

{
"name": "license-verification-test-ui",
"version": "2.0.0",
"description": "Test UI for Real License Verification ZKP System",
"main": "server.js",
"scripts": {
"build": "browserify src/zkp-browser.js -o public/js/zkp-bundle.js",
"watch": "watchify src/zkp-browser.js -o public/js/zkp-bundle.js -v",
"start": "npm run build && node server.js",
"dev": "concurrently \"npm run watch\" \"nodemon server.js\""
},
"dependencies": {
"express": "^4.18.2",
"snarkjs": "^0.7.3",
"axios": "^1.6.2",
"cors": "^2.8.5",
"circomlibjs": "^0.1.7"
},
"devDependencies": {
"browserify": "^17.0.0",
"watchify": "^4.0.0",
"concurrently": "^7.6.0",
"nodemon": "^3.0.1"
}
}