waffle/package.json

36 lines
816 B
JSON
Raw Normal View History

2022-04-04 16:50:52 +03:00
{
"name": "waffle",
"version": "1.0.0",
"main": "dist/index.js",
"repository": "https://git.hippoz.xyz/hippoz/waffle",
"author": "hippoz",
"license": "MIT",
2022-04-27 23:51:08 +03:00
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"ream": "node dist/index.js db-init",
"start": "node dist/index.js"
},
2022-04-04 16:50:52 +03:00
"dependencies": {
2022-04-05 22:34:06 +03:00
"bcrypt": "^5.0.1",
2022-10-10 19:08:37 +03:00
"cors": "^2.8.5",
2022-08-04 19:57:40 +03:00
"dotenv": "^16.0.1",
"express": "^4.18.1",
2023-08-08 15:45:22 +03:00
"file-type": "^18.5.0",
2023-08-08 17:01:56 +03:00
"jose": "^4.14.4",
2022-08-28 21:56:50 +03:00
"pg": "^8.8.0",
"sharp": "^0.31.3",
2022-08-04 19:57:40 +03:00
"ws": "^8.8.1"
2022-04-04 16:50:52 +03:00
},
"devDependencies": {
2022-04-05 22:34:06 +03:00
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
2022-04-04 16:50:52 +03:00
"@types/express": "^4.17.13",
2022-08-28 21:56:50 +03:00
"@types/node": "^18.7.13",
2022-04-05 22:34:06 +03:00
"@types/pg": "^8.6.5",
"@types/sharp": "^0.31.1",
2022-04-10 01:22:07 +03:00
"@types/ws": "^8.5.3",
2022-08-28 21:56:50 +03:00
"typescript": "^4.8.2"
2022-04-05 22:34:06 +03:00
}
2022-04-04 16:50:52 +03:00
}