-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 3.66 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
{
"name": "graphql-connections",
"version": "9.1.2",
"description": "Build and handle Relay-like GraphQL connections using a Knex query builder",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev:sqlite": "nodemon -e ts -w ./dev -x npm run ts-node-start:sqlite",
"ts-node-start:sqlite": "node ./node_modules/.bin/ts-node --project tsconfig.dev.json -r tsconfig-paths/register dev/dev.sqlite.ts",
"dev:mysql": "nodemon -e ts -w ./dev -x npm run ts-node-start:mysql",
"ts-node-start:mysql": "node ./node_modules/.bin/ts-node --project tsconfig.dev.json -r tsconfig-paths/register dev/dev.mysql.ts",
"clean": "rm -rf dist",
"test": "rimraf ./db/test.sqlite3 && NODE_ENV=test npm run migrate:sqlite:latest && NODE_ENV=test npm run seed:sqlite:run && jest",
"test:watch": "npm run test -- --watchAll --runInBand",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run clean && rollup -c",
"watch": "rollup -cw",
"lint": "./node_modules/tslint/bin/tslint --project ./tsconfig.json",
"prettier": "prettier \"src/**/*\"",
"knex:sqlite": "node ./node_modules/.bin/ts-node --project tsconfig.dev.json ./node_modules/.bin/knex --knexfile knexfile.sqlite.ts",
"seed:sqlite:make": "npm run knex:sqlite -- -x ts seed:make",
"seed:sqlite:run": "npm run knex:sqlite seed:run",
"migrate:sqlite:make": "npm run knex:sqlite migrate:make",
"migrate:sqlite:latest": "npm run knex:sqlite migrate:latest",
"migrate:sqlite:rollback": "npm run knex:sqlite migrate:rollback",
"knex:mysql": "node ./node_modules/.bin/ts-node --project tsconfig.dev.json ./node_modules/.bin/knex --knexfile knexfile.mysql.ts",
"seed:mysql:make": "npm run knex:mysql -- -x ts seed:make",
"seed:mysql:run": "npm run knex:mysql seed:run",
"migrate:mysql:make": "npm run knex:mysql migrate:make",
"migrate:mysql:latest": "npm run knex:mysql migrate:latest",
"migrate:mysql:rollback": "npm run knex:mysql migrate:rollback"
},
"repository": {
"type": "git",
"url": "git+https://github.com/social-native/graphql-connections.git"
},
"keywords": [
"GraphQL",
"Connections",
"Cursor",
"Pagination",
"Filtering",
"Searching",
"Filter",
"Relay Connection"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/social-native/graphql-connections/issues"
},
"homepage": "https://github.com/social-native/graphql-connections#readme",
"dependencies": {
"@types/dotenv": "^6.1.1",
"@types/faker": "^4.1.5",
"@types/jest": "^24.0.9",
"@types/superagent": "^4.1.1",
"@types/supertest": "^2.0.7",
"@types/luxon": "1.27.1",
"knex": "0.20.13",
"graphql": "14.7.0",
"luxon": "2.0.1"
},
"devDependencies": {
"apollo-server-koa": "^2.4.8",
"dotenv": "^8.0.0",
"faker": "^4.1.0",
"jest": "^24.3.1",
"koa": "^2.7.0",
"mysql2": "2.2.5",
"nodemon": "^1.18.10",
"prettier": "^1.16.4",
"rimraf": "^3.0.2",
"rollup": "^1.2.2",
"rollup-plugin-typescript2": "^0.24.3",
"sqlite3": "5.0.2",
"supertest": "^4.0.2",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.3",
"tsconfig-paths": "^3.8.0",
"tslint": "^5.13.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "4.1.3"
}
}