waffle/package.json
2022-08-04 19:57:40 +03:00

32 lines
760 B
JSON

{
"name": "waffle",
"version": "1.0.0",
"main": "dist/index.js",
"repository": "https://git.hippoz.xyz/hippoz/waffle",
"author": "hippoz",
"license": "MIT",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"ream": "node dist/index.js db-init",
"start": "node dist/index.js"
},
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.3",
"ws": "^8.8.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^18.6.3",
"@types/pg": "^8.6.5",
"@types/ws": "^8.5.3",
"typescript": "^4.7.4"
}
}