-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 4.31 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
{
"name": "graphql-node-version",
"version": "1.1.0",
"description": "Handle versioning of GraphQL nodes. Easily capture node changes caused from mutations by wrapping resolvers in decorators. Use Relay-like connections to query versions of a node through time.",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"bin": {
"graphql-node-version": "./dist/bin.js"
},
"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": "jest --passWithNoTests",
"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": "./node_modules/.bin/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",
"add-version-migrations": "ts-node --project tsconfig.dev.json ./dist/bin.js --knexfile knexfile.mysql.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/social-native/graphql-node-version.git"
},
"keywords": [
"Graphql",
"Node",
"Version",
"Revision",
"Event Sourcing",
"Capture data"
],
"author": "Ethan Hathaway <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/social-native/graphql-node-version/issues"
},
"homepage": "https://github.com/social-native/graphql-node-version#readme",
"dependencies": {
"bluebird": "^3.7.0",
"graphql-connections": "^7.0.3",
"graphql-scalar-unix-time-sec": "^0.2.0",
"knex": "0.20.13",
"knex-migration-generator": "^0.2.0",
"luxon": "^1.19.3",
"pino": "^6.2.0",
"yargs": "^13.2.4"
},
"devDependencies": {
"@types/bluebird": "^3.5.27",
"@types/dotenv": "^6.1.1",
"@types/graphql": "^14.0.7",
"@types/jest": "^24.0.9",
"@types/luxon": "^1.15.2",
"@types/pino": "^6.0.0",
"@types/superagent": "^4.1.1",
"apollo-server-koa": "^2.4.8",
"dotenv": "^8.0.0",
"faker": "^4.1.0",
"graphql": "^14.1.1",
"graphql-tools": "^4.0.4",
"jest": "^24.3.1",
"koa": "^2.7.0",
"mysql2": "^1.6.5",
"nodemon": "^1.18.10",
"pino-pretty": "^3.2.2",
"prettier": "^1.16.4",
"rollup": "^1.16.0",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-executable": "^1.5.0",
"rollup-plugin-hashbang": "^2.2.2",
"rollup-plugin-multi-input": "^1.0.2",
"rollup-plugin-typescript2": "^0.21.1",
"sqlite3": "^4.0.6",
"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": "~3.5.3"
}
}