-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json.bak
72 lines (72 loc) · 2.36 KB
/
package.json.bak
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "modularizing-graphql-boilerplate",
"description": "Fully-feature modularized GraphQL Server boilerplate with production-ready containerized workflow.",
"version": "0.0.0",
"scripts": {
"dev": "npm-run-all --parallel start playground",
"start": "nodemon -e ts,graphql --ignore src/generated/schema.graphql -x ts-node -r dotenv/config src/index.ts",
"start:prod": "node dist/index.js",
"serve-debug": "nodemon -e ts,graphql --ignore src/generated/schema.graphql --inspect -r ts-node/register src/index.ts",
"test": "jest",
"watch-test": "yarn test --watchAll",
"playground": "graphql playground",
"build": "sh ./scripts/build-src.sh",
"gen-typedef": "ts-node scripts/generateTypeDefs.ts && graphqlgen",
"gen-datamodel": "ts-node prisma/datamodel.ts",
"prisma-deploy": "yarn gen-datamodel && prisma deploy && yarn gen-typedef",
"seed": "ts-node seed/index.ts",
"lint": "yarn tslint && yarn prettier",
"tslint": "tslint -c tslint.json -p tsconfig.json -e \"./src/generated/*.ts\" --fix",
"prettier": "prettier --config ./.prettierrc --write \"./src/{!(generated)/**/,}*.{ts,graphql}\""
},
"repository": {
"type": "git",
"url": "https://github.com/WhatTheFar/express-gateway-plugin-cas.git"
},
"author": "Jakpat Mingmongkolmitr",
"license": "ISC",
"dependencies": {
"bcryptjs": "2.4.3",
"graphql": "0.13.2",
"graphql-iso-date": "^3.6.1",
"graphql-shield": "^3.2.1",
"graphql-tag": "2.9.2",
"graphql-tools": "3.1.1",
"graphql-yoga": "1.16.2",
"graphql-yup-middleware": "^0.0.1",
"graphqlgen": "^0.2.15",
"jsonwebtoken": "8.3.0",
"lodash": "^4.17.11",
"merge-graphql-schemas": "^1.5.4",
"module-alias": "^2.1.0",
"prisma-binding": "2.1.5",
"util": "^0.11.0",
"yup": "^0.26.6"
},
"devDependencies": {
"@types/bcryptjs": "2.4.1",
"@types/graphql-iso-date": "^3.3.1",
"@types/jest": "^23.3.2",
"@types/jsonwebtoken": "^7.2.8",
"@types/lodash": "^4.14.116",
"@types/supertest": "^2.0.6",
"@types/yup": "^0.26.0",
"dotenv": "5.0.1",
"graphql-cli": "2.16.7",
"graphql-request": "^1.8.2",
"jest": "^23.6.0",
"nodemon": "1.18.4",
"npm-run-all": "4.1.3",
"prettier": "^1.12.1",
"prettierrc": "^0.0.0-5",
"prisma": "1.15.3",
"supertest": "^3.3.0",
"ts-jest": "^23.10.1",
"ts-node": "6.2.0",
"tslint": "^5.10.0",
"typescript": "2.9.2"
},
"resolutions": {
"graphql-yoga/graphql-middleware": "^1.7.0"
}
}