-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.28 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"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": "14.0.2",
"graphql-iso-date": "3.6.1",
"graphql-shield": "5.7.3",
"graphql-tag": "2.10.0",
"graphql-tools": "4.0.3",
"graphql-yoga": "1.16.9",
"graphql-yup-middleware": "0.0.1",
"graphqlgen": "0.4.0",
"jsonwebtoken": "8.4.0",
"lodash": "4.17.13",
"merge-graphql-schemas": "1.5.8",
"module-alias": "2.1.0",
"prisma-binding": "2.2.12",
"util": "0.11.1",
"yup": "0.26.6"
},
"devDependencies": {
"@types/bcryptjs": "2.4.2",
"@types/graphql-iso-date": "3.3.1",
"@types/jest": "24.0.18",
"@types/jsonwebtoken": "8.3.0",
"@types/lodash": "4.14.119",
"@types/supertest": "2.0.8",
"@types/yup": "0.26.3",
"dotenv": "6.2.0",
"graphql-cli": "3.0.3",
"graphql-request": "1.8.2",
"jest": "24.9.0",
"nodemon": "1.19.2",
"npm-run-all": "4.1.5",
"prettier": "1.15.3",
"prettierrc": "0.0.0",
"prisma": "1.23.2",
"supertest": "3.4.2",
"ts-jest": "23.10.5",
"ts-node": "7.0.1",
"tslint": "5.12.0",
"typescript": "3.2.2"
}
}