Files
sdk/examples/valentines/package.json
Neil Movva b2968962e7 Private Valentines demo (#9)
JS Client changes:
Gracefully return null if key is not found in bucket (instead of throwing)
Support single and multi-key lookups in a unified privateRead function
2023-02-15 00:53:54 -08:00

36 lines
832 B
JSON

{
"name": "blyss-private-valentines",
"version": "1.0.0",
"description": "",
"type": "module",
"keywords": [],
"main": "src/index.tsx",
"dependencies": {
"react": "18.0.0",
"react-dom": "18.0.0",
"react-scripts": "5.0.1"
},
"devDependencies": {
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"typescript": "4.4.2"
},
"scripts": {
"start": "PORT=3010 BROWSER=none react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": {
"production": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}