Betterzon/Backend/package.json
Patrick a3ac897818
BETTERZON-75: User registration API endpoint (#34)
* BETTERZON-75: Adding backend functions to enable user registration

* BETTERZON-75: Adding regex to check email and username
2021-04-29 09:42:34 +02:00

38 lines
872 B
JSON

{
"name": "Backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/index",
"webpack": "webpack --config webpack.config.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"guid-typescript": "^1.0.9",
"helmet": "^4.2.0",
"mariadb": "^2.5.1",
"typeorm": "^0.2.29"
},
"devDependencies": {
"@types/bcrypt": "^3.0.1",
"@types/cors": "^2.8.8",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.9",
"@types/helmet": "^4.0.0",
"@types/node": "^14.14.9",
"@types/webpack": "^4.41.25",
"ts-loader": "^6.2.2",
"typescript": "^4.1.2",
"webpack": "^5.6.0",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^1.7.2"
}
}