-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.53 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
{
"name": "plv8-git",
"version": "0.1.2",
"description": "Tracks history of rows in postgresql database tables, using in-memory git operations",
"repository": {
"type": "git",
"url": "https://github.com/mmkal/plv8-git.git"
},
"homepage": "https://github.com/mmkal/plv8-git#readme",
"bugs": {
"url": "https://github.com/mmkal/plv8-git/issues"
},
"keywords": [
"postgresql",
"git",
"plv8",
"postgres",
"psql",
"sql",
"isomorphic-git",
"memfs",
"event-sourcing"
],
"license": "Apache-2.0",
"main": "dist/bundle.js",
"types": "dist/index.d.ts",
"bin": "dist/cli.js",
"scripts": {
"prebuild": "rm -rf dist && rm -rf queries",
"build": "yarn webpack && yarn generate && yarn compile",
"ci": "yarn build && yarn test && yarn lint",
"compile": "tsc -p tsconfig.lib.json",
"predocker-apply": "yarn docker-copy-query",
"docker-apply": "yarn psql -f /queries/create-git-functions.sql",
"docker-bash": "docker-compose exec postgres bash",
"docker-logs": "docker-compose logs --follow --tail 100",
"docker-psql": "docker-compose exec postgres psql -h localhost -U postgres postgres",
"predocker-copy-query": "yarn docker-exec mkdir -p /queries",
"docker-copy-query": "docker cp queries/create-git-functions.sql plv8-git_postgres_1:/queries",
"docker-exec": "docker exec plv8-git_postgres_1",
"eslint": "eslint --max-warnings 0",
"generate": "yarn tsn scripts/generate-queries",
"lint": "tsc -p . && yarn eslint . ",
"prepare": "patch-package",
"psql": "yarn --silent docker-exec psql -h localhost -U postgres postgres",
"test": "jest",
"tsn": "ts-node --transpile-only",
"webpack": "webpack"
},
"dependencies": {
"@rushstack/ts-command-line": "^4.7.3"
},
"devDependencies": {
"@babel/core": "7.13.8",
"@typescript-eslint/parser": "4.15.2",
"assert": "2.0.0",
"babel-loader": "8.2.2",
"babel-plugin-transform-async-to-promises": "0.8.15",
"buffer": "6.0.3",
"eslint": "7.21.0",
"eslint-plugin-codegen": "0.15.0",
"eslint-plugin-prettier": "3.3.1",
"isomorphic-git": "1.9.2",
"jest": "26.6.3",
"memfs": "3.2.2",
"patch-package": "6.4.0",
"path-browserify": "1.0.1",
"prettier": "2.2.1",
"process": "0.11.10",
"slonik": "23.8.5",
"stream-browserify": "3.0.0",
"ts-jest": "26.5.2",
"ts-loader": "9.1.1",
"ts-node": "9.1.1",
"typescript": "4.2.2",
"url": "0.11.0",
"util": "0.12.3",
"webpack": "5.24.2",
"webpack-cli": "4.5.0"
}
}