fanzine/package.json

37 lines
849 B
JSON
Raw Normal View History

2022-03-29 12:45:52 +00:00
{
"name": "fanzine",
"version": "0.0.1",
"description": "A web extension to publish content on a S3 website",
2022-03-31 16:47:26 +00:00
"main": "s3.mjs",
2022-03-29 12:45:52 +00:00
"type": "module",
2022-03-30 13:03:19 +00:00
"dependencies": {
"@aws-sdk/client-s3": "^3.58.0",
"@rescript/react": "^0.10.3",
2022-03-31 16:47:26 +00:00
"@ryyppy/rescript-promise": "^2.1.0",
2022-03-30 13:49:07 +00:00
"react": "^17.0.2",
2022-03-31 16:47:26 +00:00
"react-dom": "^18.0.0",
"rescript-aws-sdk-v3": "0.0.1"
2022-03-30 13:03:19 +00:00
},
2022-03-29 12:45:52 +00:00
"devDependencies": {
2022-03-29 13:23:10 +00:00
"rescript": "^9.1.4",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
2022-03-29 12:45:52 +00:00
},
"scripts": {
"re:build": "rescript",
"re:start": "rescript build -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git@git.deuxfleurs.fr:quentin/fanzine.git"
},
"keywords": [
"s3",
"garage",
"web"
],
"author": "Quentin Dufour",
"license": "AGPL-3.0-or-later"
}