forked from Enigmatis/polaris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
136 lines (136 loc) · 3.95 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "@enigmatis/polaris",
"version": "2.14.0",
"description": "An express graphql js engine",
"main": "./dist/src/main.js",
"types": "./dist/src/main.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"cz": "git add . && git-cz",
"setup": "npm ci",
"coverage": "jest --runInBand --detectOpenHandles --coverage",
"build": "rimraf dist && tsc -p tsconfig.json",
"build-watch": "tsc --watch -p tsconfig.json",
"clean": "shx rm -rf node_modules/ dist/ docs/",
"typedoc": "typedoc --out ./docs --mode modules --tsconfig ./tsconfig.json ./src/",
"posttypedoc": "shx cp .nojekyll docs/.nojekyll",
"prepare": "npm run lint:fix && npm run build",
"lint": "npm run tslint-check && tslint -p .",
"lint:fix": "npm run tslint-check && tslint -p . --fix",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once",
"test": "jest --runInBand --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "https://github.com/Enigmatis/polaris.git"
},
"keywords": [
"polaris",
"graphql"
],
"author": "yarin vaknin",
"license": "ISC",
"bugs": {
"url": "https://github.com/Enigmatis/polaris/issues"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": true
}
],
"@semantic-release/github"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
},
"homepage": "https://github.com/yarinvak/polaris#readme",
"dependencies": {
"@bitjourney/uuid-v4": "^1.0.1",
"@enigmatis/polaris-logs": "^3.0.1",
"@enigmatis/utills": "^1.3.3",
"@types/graphql": "^14.2.0",
"@types/graphql-fields": "^1.3.0",
"@types/graphql-iso-date": "^3.3.1",
"@types/koa-router": "^7.0.40",
"@types/node": "10.12.12",
"apollo-server-core": "^2.4.8",
"graphql": "^14.2.1",
"graphql-extensions": "^0.5.7",
"graphql-fields": "^2.0.3",
"graphql-iso-date": "^3.6.1",
"graphql-middleware": "^3.0.1",
"graphql-tools": "^4.0.4",
"inversify": "^5.0.1",
"inversify-binding-decorators": "^4.0.0",
"joi": "^14.3.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"merge-graphql-schemas": "^1.5.8",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.3.1",
"@enigmatis/mongo-driver": "^1.8.13",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/git": "^7.0.8",
"@types/cors": "^2.8.4",
"@types/dotenv": "^6.1.1",
"@types/jest": "^24.0.11",
"@types/joi": "^14.3.2",
"@types/mongoose": "^5.3.26",
"apollo-server-koa": "^2.4.8",
"cz-conventional-changelog": "^2.1.0",
"dotenv": "^7.0.0",
"graphql-request": "^1.8.2",
"husky": "^1.3.1",
"jest": "24.1.0",
"mongoose": "^5.5.1",
"prettier": "^1.17.0",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.16",
"shx": "^0.3.2",
"travis-deploy-once": "^5.0.11",
"ts-jest": "^24.0.2",
"tslint": "^5.15.0",
"tslint-config-prettier": "^1.17.0",
"tslint-consistent-codestyle": "^1.15.1",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "3.1.3"
},
"peerDependencies": {
"apollo-server-koa": ">=2.3.3 <3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint:fix"
}
}
}