-
-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
120 lines (120 loc) · 4.03 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
{
"name": "graphile-worker",
"version": "0.16.6",
"type": "commonjs",
"description": "Job queue for PostgreSQL",
"main": "dist/index.js",
"scripts": {
"build:sql": "node scripts/buildSqlModule.mjs",
"website:update": "node scripts/options.mjs",
"prepack": "rm -Rf dist && npm run build:sql && tsc && chmod +x dist/cli.js",
"watch": "mkdir -p dist && touch dist/cli.js && chmod +x dist/cli.js && npm run build:sql && tsc --watch",
"lint": "yarn prettier:check && eslint --ext .js,.jsx,.ts,.tsx,.graphql .",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx,.graphql . --fix; prettier --cache --ignore-path .eslintignore --write '**/*.{js,jsx,ts,tsx,graphql,md,json}'",
"prettier:check": "prettier --cache --ignore-path .eslintignore --check '**/*.{js,jsx,ts,tsx,graphql,md,json}'",
"test": "yarn prepack && yarn depcheck && yarn test:setupdb && yarn test:only",
"test:setupdb": "./scripts/setup_template_db.sh",
"test:only": "node --experimental-vm-modules node_modules/.bin/jest",
"depcheck": "depcheck --ignores='graphile-worker,faktory-worker,@google-cloud/tasks,bullmq,jest-environment-node,@docusaurus/*,@fortawesome/*,@mdx-js/*,@types/jest,clsx,eslint_d,graphile,juice,postcss-nested,prism-react-renderer,react,react-dom,svgo,ts-node,@types/debug,tslib'",
"db:dump": "./scripts/dump_db",
"perfTest": "cd perfTest && node ./run.js",
"preversion": "grep '^### Pending' RELEASE_NOTES.md && echo \"⚠️ Cannot publish with 'Pending' in RELEASE_NOTES ⚠️\" && exit 1 || true",
"version": "node scripts/postversion.mjs && git add src/version.ts",
"website": "cd website && yarn run"
},
"bin": {
"graphile-worker": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/graphile/worker.git"
},
"keywords": [
"postgresql",
"postgres",
"pg",
"worker",
"sql",
"easy",
"fast",
"jobs",
"background",
"tasks"
],
"author": "Benjie Gillam <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/worker/issues"
},
"homepage": "https://github.com/graphile/worker#readme",
"dependencies": {
"@graphile/logger": "^0.2.0",
"@types/debug": "^4.1.10",
"@types/pg": "^8.10.5",
"cosmiconfig": "^8.3.6",
"graphile-config": "^0.0.1-beta.4",
"json5": "^2.2.3",
"pg": "^8.11.3",
"tslib": "^2.6.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@docusaurus/core": "2.4.3",
"@docusaurus/module-type-aliases": "2.4.3",
"@docusaurus/preset-classic": "2.4.3",
"@docusaurus/remark-plugin-npm2yarn": "^2.4.3",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mdx-js/react": "^1.6.22",
"@types/jest": "^26.0.0",
"@types/json5": "^2.2.0",
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"clsx": "^2.0.0",
"depcheck": "^1.4.7",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint_d": "^13.0.0",
"graphile": "^5.0.0-beta.16",
"jest": "^26.0.0",
"jest-time-helpers": "0.1.0",
"juice": "5.2.0",
"pg-connection-string": "^2.6.2",
"postcss-nested": "^6.0.1",
"prettier": "^2.0.0",
"prism-react-renderer": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"svgo": "^1.3.0",
"ts-jest": "^26.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"zx": "^7.2.3"
},
"files": [
"dist",
"sql"
],
"engines": {
"node": ">=14.0.0"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}