mirror of
https://github.com/tlsnotary/tlsn-plugin-demo.git
synced 2026-01-06 20:14:01 -05:00
* Add interactive verifier demo * Serve and load plugin from local file * Show screenname at the end + removed attestation code * No more need for tlsn-js * Updated Docker container * Use environment variable to enable/disable POAPs * Improved UI * use LRU for tracking sessions Co-authored-by: Hendrik Eeckhaut <hendrik@eeckhaut.org>
97 lines
3.3 KiB
JSON
97 lines
3.3 KiB
JSON
{
|
|
"name": "tlsn-plugin-demo",
|
|
"version": "0.0.0",
|
|
"description": "",
|
|
"main": "",
|
|
"scripts": {
|
|
"build:ui": "NODE_ENV=production webpack --config webpack.web.config.js",
|
|
"watch:ui": "NODE_ENV=development webpack --config webpack.web.config.js --watch",
|
|
"dev:ui": "NODE_ENV=development webpack-dev-server --config webpack.web.config.js --hot",
|
|
"build:server": "NODE_ENV=production webpack --config webpack.server.config.js",
|
|
"watch:server": "NODE_ENV=development webpack --config webpack.server.config.js --watch",
|
|
"nodemon:server": "NODE_ENV=development nodemon build/server/index.bundle.js",
|
|
"dev:server": "NODE_ENV=development concurrently npm:watch:server npm:nodemon:server",
|
|
"start": "node build/server/index.bundle.js",
|
|
"build": "concurrently npm:build:ui npm:build:server",
|
|
"dev": "concurrently npm:watch:ui npm:dev:server",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/tlsnotary/tlsn-plugin-demo"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@fortawesome/fontawesome-free": "^6.6.0",
|
|
"async-mutex": "^0.5.0",
|
|
"buffer": "^6.0.3",
|
|
"classnames": "^2.5.1",
|
|
"crypto-browserify": "^3.12.1",
|
|
"dotenv": "^16.4.5",
|
|
"express": "^4.21.1",
|
|
"fast-deep-equal": "^3.1.3",
|
|
"firebase-admin": "^13.1.0",
|
|
"isomorphic-fetch": "^3.0.0",
|
|
"lru-cache": "^11.1.0",
|
|
"react": "^18.3.1",
|
|
"react-confetti-explosion": "^2.1.2",
|
|
"react-dom": "^18.3.1",
|
|
"react-router": "^6.15.0",
|
|
"react-router-dom": "^6.15.0",
|
|
"stream-browserify": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.25.2",
|
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
"@babel/preset-env": "^7.25.4",
|
|
"@babel/preset-react": "^7.24.7",
|
|
"@mui/material": "^6.1.2",
|
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
|
|
"@tailwindcss/postcss": "^4.0.0-alpha.29",
|
|
"@types/node": "^22.7.4",
|
|
"@types/react": "^18.3.10",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@types/react-router-dom": "^5.3.3",
|
|
"autoprefixer": "^10.4.20",
|
|
"babel-eslint": "^10.1.0",
|
|
"babel-loader": "^9.2.1",
|
|
"babel-preset-react-app": "^10.0.1",
|
|
"clean-webpack-plugin": "^4.0.0",
|
|
"compression-webpack-plugin": "^11.1.0",
|
|
"concurrently": "^9.0.1",
|
|
"copy-webpack-plugin": "^12.0.2",
|
|
"css-loader": "^7.1.2",
|
|
"eslint": "8.1.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-config-react-app": "^7.0.0",
|
|
"eslint-plugin-flowtype": "8.0.3",
|
|
"eslint-plugin-import": "^2.30.0",
|
|
"eslint-plugin-jsx-a11y": "^6.10.0",
|
|
"eslint-plugin-prettier": "^5.2.1",
|
|
"eslint-plugin-react": "^7.37.0",
|
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
"file-loader": "^6.2.0",
|
|
"fs-extra": "^11.2.0",
|
|
"html-loader": "^4.2.0",
|
|
"html-webpack-plugin": "^5.5.0",
|
|
"image-webpack-loader": "^8.1.0",
|
|
"node-loader": "^2.0.0",
|
|
"nodemon": "^3.1.7",
|
|
"postcss-loader": "^7.3.3",
|
|
"postcss-preset-env": "^9.1.1",
|
|
"prettier": "^3.3.3",
|
|
"sass": "^1.80.6",
|
|
"sass-loader": "^16.0.3",
|
|
"source-map-loader": "^3.0.1",
|
|
"style-loader": "^3.3.1",
|
|
"tailwindcss": "^3.4.13",
|
|
"ts-loader": "^9.4.2",
|
|
"typescript": "^5.8.3",
|
|
"webpack": "^5.75.0",
|
|
"webpack-cli": "^4.10.0",
|
|
"webpack-dev-server": "^4.11.1"
|
|
},
|
|
"homepage": ""
|
|
} |