This repository has been archived on 2026-06-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
auracle-api/package.json
2021-07-31 12:48:08 +02:00

63 lines
1.6 KiB
JSON

{
"name": "auracle-api",
"version": "1.0.0",
"description": "API for Auracle database",
"main": "./src/main.ts",
"private": true,
"scripts": {
"dev": "nodemon",
"build": "tsc -p ./",
"start": "ts-node ./src/main.ts",
"start:prod": "node ./dist/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexisNP/auracle_api"
},
"keywords": [
"api",
"rpg",
"spells",
"magic",
"database",
"ttrpg",
"dices",
"worldbuilding",
"express",
"node",
"typescript"
],
"author": "AlexisNP",
"license": "ISC",
"bugs": {
"url": "https://github.com/AlexisNP/spellsaurus/issues"
},
"homepage": "https://github.com/AlexisNP/spellsaurus#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^4.4.1",
"jsonwebtoken": "^8.5.1",
"mariadb": "^2.5.4",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"nodemailer": "^6.6.3",
"typeorm": "^0.2.35"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/helmet": "^4.0.0",
"@types/morgan": "^1.9.3",
"@types/validator": "^13.6.3",
"babel-eslint": "^10.1.0",
"dotenv": "^8.6.0",
"eslint": "^7.31.0",
"eslint-plugin-import": "^2.23.4",
"nodemon": "^2.0.12",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}