-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 KB
/
package.json
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
41
42
43
44
45
{
"name": "graphql-boilerplate",
"version": "0.1.0",
"description": "Graphql Yoga + Prisma + Typescript",
"keywords": [
"graphql",
"yoga",
"prisma",
"boilerplate"
],
"main": "src/index.js",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check --watch",
"build": "tsc --build tsconfig.json",
"database:seed": "env-cmd ./config/.env.dev ts-node prisma/seed.ts",
"dev": "env-cmd ./config/.env.dev nodemon",
"serve": "env-cmd ./config/.env.dev node dist/index.js",
"start": "node dist/index.js",
"heroku-postbuild": "yarn build"
},
"author": "Raul Quispe <[email protected]>",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"graphql-depth-limit": "^1.1.0",
"graphql-shield": "^6.0.0",
"graphql-yoga": "^1.14.10",
"jsonwebtoken": "^8.5.0",
"prisma-binding": "^2.3.5",
"validator": "^11.0.0"
},
"devDependencies": {
"@types/aws-lambda": "8.10.31",
"@types/bcryptjs": "2.4.2",
"@types/graphql-depth-limit": "1.1.2",
"@types/jsonwebtoken": "8.3.3",
"@types/validator": "10.11.3",
"@types/ws": "6.0.1",
"env-cmd": "8.0.2",
"nodemon": "1.19.2",
"ts-node": "8.3.0",
"typescript": "3.6.2"
}
}