12345678910111213141516171819202122232425262728293031323334 |
- {
- "name": "backend",
- "version": "1.0.0",
- "description": "",
- "main": "index.js",
- "scripts": {
- "start": "nodemon -e js,graphql -x node index.js",
- "dev": "nodemon -e js,graphql -x node --inspect index.js",
- "deploy": "prisma deploy",
- "test": "echo \"Error: no test specified\" && exit 1"
- },
- "author": "Tomi Cvetic <tomi.cvetic@gmail.com>",
- "license": "GPL-3.0",
- "dependencies": {
- "bcryptjs": "2.4.3",
- "body-parser": "1.19.0",
- "cookie-parser": "1.4.4",
- "cors": "2.8.5",
- "dotenv": "8.2.0",
- "graphql": "14.5.8",
- "graphql-yoga": "1.18.3",
- "jsonwebtoken": "8.5.1",
- "nodemailer": "^6.4.2",
- "prisma": "^1.34.10",
- "prisma-binding": "2.3.16",
- "promisify": "0.0.3",
- "randombytes": "^2.1.0",
- "standard": "14.3.1"
- },
- "devDependencies": {
- "nodemon": "1.19.4",
- "graphql-cli": "3.0.14"
- }
- }
|