-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.82 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"author": "Sumit Ghosh",
"contributors": [
"Sumit Ghosh <sumitmckv14@gmail.com>"
],
"description": "Node Graphql starter template",
"license": "MIT",
"name": "node-graphql-starter",
"version": "1.0.0",
"engines": {
"node": ">=10.0"
},
"scripts": {
"tsc": "tsc",
"start": "node dist/src/index.js",
"docker:logs": "docker-compose logs",
"docker:ps": "docker-compose ps",
"docker:start": "docker-compose up",
"docker:stop": "docker-compose -f docker-compose.yml down -v --remove-orphans",
"nodemon:start": "nodemon --exec ./node_modules/.bin/ts-node -- ./src/index.ts",
"dev": "npm run nodemon:start",
"format:lint": "./node_modules/.bin/tslint -c tslint.json 'src/**/*.ts'",
"format:prettier": "./node_modules/.bin/prettier --tab-width 4 --print-width 120 --single-quote --trailing-comma all --write 'src/**/*.ts'",
"snyk-protect": "snyk protect",
"postinstall": "npm run tsc",
"prepublish": "npm run snyk-protect"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
],
"*.{js,ts,tsx}": [
"git add"
]
},
"dependencies": {
"@apollographql/graphql-playground-html": "^1.6.24",
"@hapi/accept": "^4.0.0",
"@hapi/basic": "^5.1.1",
"@hapi/boom": "7.4.11",
"@hapi/hapi": "^18.4.0",
"@hapi/inert": "^5.2.2",
"@hapi/joi": "15.1.1",
"@hapi/vision": "^5.5.4",
"apollo-server-core": "^2.9.12",
"dotenv": "^8.2.0",
"graphql": "^14.5.8",
"hapi-auth-jwt2": "^8.8.1",
"pg": "^7.12.1",
"reflect-metadata": "^0.1.13",
"snyk": "^1.239.0",
"type-graphql": "^0.17.5",
"typeorm": "^0.2.20",
"winston": "^3.2.1"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@types/code": "^4.0.5",
"@types/dotenv": "^6.1.1",
"@types/graphql": "^14.5.0",
"@types/hapi": "^18.0.2",
"@types/hapi__boom": "^7.4.1",
"@types/hapi__hapi": "^18.2.5",
"@types/hapi__inert": "^5.2.0",
"@types/hapi__joi": "^16.0.2",
"@types/hapi__vision": "^5.5.1",
"@types/jsonwebtoken": "^8.3.5",
"@types/nedb": "^1.8.8",
"@types/node": "^12.6.8",
"@types/node-fetch": "^2.5.4",
"@types/tape": "^4.2.33",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"nodemon": "^1.19.4",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"tap-spec": "^5.0.0",
"tape": "^4.11.0",
"ts-node": "^8.5.2",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
},
"keywords": [
"nodejs",
"graphql",
"hapi",
"typescript",
"type-graphql",
"typeorm"
],
"snyk": true
}