summaryrefslogtreecommitdiffstats
path: root/backend/package.json
blob: a15f813968f32779fb51543647628355e5ee50d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
  "name": "my-own",
  "scripts": {
    "start": "nodemon -e js,graphql -x node -r dotenv/config src/index.js",
    "debug": "nodemon -e js,graphql -x node --inspect -r dotenv/config src/index.js",
    "playground": "graphql playground",
    "dev": "npm-run-all --parallel start playground",
    "test": "jest"
  },
  "dependencies": {
    "bcryptjs": "2.4.3",
    "graphql": "^0.13.2",
    "graphql-yoga": "1.7.1",
    "jsonwebtoken": "8.2.1",
    "nodemailer": "^4.6.4",
    "prisma-binding": "1.5.16",
    "react-debounce-input": "^3.2.0",
    "stripe": "^5.8.0"
  },
  "devDependencies": {
    "babel-preset-env": "^1.6.1",
    "chalk": "^2.3.2",
    "dotenv": "5.0.1",
    "graphql-cli": "2.15.8",
    "graphql-request": "^1.5.1",
    "jest-cli": "^22.4.3",
    "nodemon": "1.17.3",
    "npm-run-all": "4.1.2",
    "prisma": "1.5.3"
  },
  "license": "MIT",
  "repository": {
    "url": "wesbos.com"
  },
  "babel": {
    "presets": [
      "env"
    ]
  }
}