forked from LIT-Protocol/lit-scheduled-tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.04 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
{
"name": "lit-scheduled-tasks",
"private": true,
"version": "1.0.0",
"description": "Scheduled tasks for LIT Protocol",
"homepage": "https://github.com/LIT-protocol/lit-scheduled-tasks",
"engines": {
"node": "^18.19.1",
"pnpm": "8.15.5"
},
"type": "module",
"scripts": {
"build": "pnpm -r run build && pnpm tsc",
"lint": "pnpm eslint .",
"clean": "pnpm exec rm -Rf node_modules dist && pnpm --parallel -r run clean",
"test": "pnpm -r run test",
"dev": "pnpm build && pnpm dotenvx run -- node ./dist/worker/worker_test_run_now.js",
"start": "pnpm build && node ./dist/worker/worker.js",
"prepare": "husky",
"ci_validate": "node ./dist/bin/validateJSONRecipients.js",
"validate": "pnpm tsc && node ./dist/bin/validateJSONRecipients.js"
},
"packageManager": "[email protected]",
"keywords": [],
"author": "Daryl Collins <[email protected]>",
"license": "ISC",
"devDependencies": {
"@dotenvx/dotenvx": "^0.26.0",
"@tsconfig/node18": "^18.2.2",
"@types/chai": "^4.3.14",
"@types/lodash": "^4.17.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.30",
"@types/verror": "^1.10.10",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"chai": "^5.1.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-chai-friendly": "^0.7.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-sort-keys-plus": "^1.4.0",
"eslint-plugin-typescript-sort-keys": "^3.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mocha": "^10.3.0",
"prettier": "^3.2.5",
"prettier-plugin-jsdoc": "^1.3.0",
"tsx": "^4.7.1",
"typescript": "^5.4.3",
"unbuild": "^2.0.0",
"zod": "^3.22.4"
},
"dependencies": {
"consola": "^3.2.3",
"lit-task-auto-top-up": "workspace:*",
"lit-task-client": "workspace:*",
"lodash": "^4.17.21"
}
}