This repository was archived by the owner on Apr 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.13 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.13 KB
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
{
"name": "graphql-koa-scripts",
"version": "2.0.4",
"description": "-",
"main": "src/index.js",
"author": "ryanhs <mr.ryansilalahi@gmail.com>",
"license": "MIT",
"dependencies": {
"@cloudnative/health": "^2.1.2",
"@graphql-tools/schema": "^8.3.3",
"@koa/router": "^10.1.1",
"apollo-server-core": "^3.6.4",
"apollo-server-koa": "^3.6.4",
"bluebird": "^3.7.2",
"bunyan": "^1.8.15",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"flaverr": "^1.10.0",
"graphql": "^16.3.0",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.6.3",
"hook-emitter": "^4.1.0",
"koa": "^2.11.0",
"meow": "^7.0.1",
"nodemon": "^2.0.4",
"superagent": "^7.1.1",
"supertest": "^6.2.2",
"ws": "^8.5.0"
},
"devDependencies": {
"@faker-js/faker": "5.5.3",
"coveralls": "3.1.1",
"docsify-cli": "4.4.4",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "26.9.0",
"eslint-plugin-prettier": "4.2.1",
"find-free-port": "2.0.0",
"jest": "27.5.1",
"jest-date-mock": "1.0.10",
"nodemon": "2.0.22",
"prettier": "2.8.8"
},
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon src/cli/bin.js start",
"lint": "cross-env eslint -c .eslintrc.js src/ tests/ --fix --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look good.'",
"test:basic": "cross-env NODE_ENV=development jest --detectOpenHandles --runInBand --passWithNoTests",
"test": "yarn test:basic --forceExit --coverage",
"test:watch": "yarn test:basic --watch",
"docs": "dos2unix node_modules/.bin/docsify && docsify serve docs/",
"coveralls:push": "cat ./coverage/lcov.info | coveralls",
"p": "npm version patch && git push github master --tags"
},
"bin": {
"graphql-koa-scripts": "./src/cli/bin.js"
},
"engines": {
"node": ">=12.22.0"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./jest.setup.js",
"jest-date-mock"
]
},
"files": [
"src/",
"testing/"
]
}