TanguyH
4e12b56e2a
- Authentication support - Env file example for easy and secure setup - Dynamic GraphQL Module loading - Database linking using Prisma
37 lines
1000 B
JSON
37 lines
1000 B
JSON
{
|
|
"name": "amaxa",
|
|
"version": "0.0.1",
|
|
"description": "Amaxa is the API mainframe used to centralize every GraphQL Module",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "nodemon src/index.js",
|
|
"start": "node src/index.js",
|
|
"deploy": "prisma deploy"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/The-School-of-Athens/Amaxa.git"
|
|
},
|
|
"author": "Tanguy Herbron",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/The-School-of-Athens/Amaxa/issues"
|
|
},
|
|
"homepage": "https://github.com/The-School-of-Athens/Amaxa#readme",
|
|
"dependencies": {
|
|
"@graphql-modules/core": "^0.7.15",
|
|
"apacheconf": "0.0.5",
|
|
"apollo-server": "^2.2.6",
|
|
"bcryptjs": "^2.4.3",
|
|
"dotenv": "^8.2.0",
|
|
"graphql": "^14.0.2",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"prisma": "^1.23.0",
|
|
"prisma-client-lib": "^1.21.1",
|
|
"temenos": "git+https://github.com/The-School-of-Athens/Temenos.git"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^1.18.7"
|
|
}
|
|
}
|