-
-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 4.54 KB
/
Copy pathpackage.json
File metadata and controls
131 lines (131 loc) · 4.54 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
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
121
122
123
124
125
126
127
128
129
130
131
{
"name": "graphile-worker",
"version": "0.17.3",
"type": "module",
"description": "Job queue for PostgreSQL",
"main": "dist/index.js",
"exports": "./dist/index.js",
"scripts": {
"build:sql": "node scripts/buildSqlModule.mjs",
"website:update": "yarn prepack && 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 \"**/*.{js,jsx,ts,tsx,graphql}\"",
"lint:fix": "eslint \"**/*.{js,jsx,ts,tsx,graphql}\" --fix; prettier --cache --ignore-path .lintignore --write '**/*.{js,jsx,ts,tsx,graphql,md,json}'",
"prettier:check": "prettier --cache --ignore-path .lintignore --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": "NO_LOG_SUCCESS=1 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,@types/*,@tsconfig/*,@typescript-eslint/*,eslint-*'",
"db:dump": "./scripts/dump_db",
"perfTest": "cd perfTest && node ./run.js",
"towerDefence": "cd towerDefence && node ./run.mjs",
"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",
"website:start": "yarn website start",
"website:deploy": "yarn website deploy"
},
"bin": "dist/cli.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/graphile/worker.git"
},
"keywords": [
"postgresql",
"postgres",
"pg",
"worker",
"sql",
"easy",
"fast",
"jobs",
"background",
"tasks"
],
"author": "Benjie Gillam <code@benjiegillam.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/worker/issues"
},
"homepage": "https://github.com/graphile/worker#readme",
"dependencies": {
"@graphile/logger": "^0.3.0",
"@types/debug": "^4.1.10",
"@types/pg": "^8.10.5",
"cosmiconfig": "^8.3.6",
"graphile-config": "^0.0.1-beta.16",
"json5": "^2.2.3",
"pg": "^8.11.3",
"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",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@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",
"@jest/globals": "^30.2.0",
"@mdx-js/react": "^1.6.22",
"@tsconfig/node-ts": "^23.6.4",
"@tsconfig/node22": "^22.0.0",
"@types/jest": "^30.0.0",
"@types/json5": "^2.2.0",
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^8.61.1",
"@typescript-eslint/parser": "^8.61.1",
"clsx": "^2.0.0",
"depcheck": "^1.4.7",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint_d": "^15.0.2",
"graphile": "^5.0.0-beta.41",
"jest": "^30.2.0",
"jest-time-helpers": "^1.1.1-canary.1",
"juice": "5.2.0",
"pg-connection-string": "^2.6.2",
"postcss-nested": "^6.0.1",
"prettier": "^3.8.3",
"prism-react-renderer": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"svgo": "^2.0.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"zx": "^8.8.5"
},
"resolutions": {
"eslint-plugin-import/tsconfig-paths": "^4.2.0",
"webpack": "5.x <5.106"
},
"files": [
"dist",
"sql"
],
"engines": {
"node": ">=22.18.0"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "yarn@4.16.0"
}