-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.97 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "vercel-cron",
"version": "0.0.0-development",
"description": "Vercel Crons for local development",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/saiichihashimoto"
},
"license": "MIT",
"bin": "./dist/vercel-cron.js",
"files": ["dist"],
"scripts": {
"prebuild": "rm -rf dist",
"build": "npx tsc --build --verbose",
"postbuild": "chmod +x ./dist/vercel-cron.js",
"predev:build": "rm -rf dist",
"dev": "concurrently --prefix-colors \"auto\" npm:dev:*",
"dev:build": "tsc-watch --preserveWatchOutput --onSuccess \"sh -c 'chmod +x ./dist/vercel-cron.js; ./dist/vercel-cron.js --version && ./dist/vercel-cron.js --help && ./dist/vercel-cron.js --trace'\"",
"dev:test": "npm run test -- --watch",
"lint": "lint-staged --shell --verbose --diff \"4b825dc642cb6eb9a060e54bf8d69288fbee4904\" --no-stash",
"prepare": "is-ci || husky",
"start": "./dist/vercel-cron.js",
"stryker": "stryker run",
"pretest": "rm -rf .stryker-tmp",
"test": "jest --color --cache"
},
"dependencies": {
"@next/env": "14.1.0",
"boxen": "5.1.2",
"chalk": "4.1.2",
"commander": "12.0.0",
"croner": "8.0.0",
"cronstrue": "2.47.0",
"lodash": "4.17.21",
"pino": "8.18.0",
"pino-pretty": "10.3.1",
"zod": "3.22.4"
},
"devDependencies": {
"@cspell/eslint-plugin": "8.3.2",
"@jest/globals": "29.7.0",
"@standard-configs/prettier-plugin": "1.0.12",
"@stryker-mutator/core": "8.0.0",
"@stryker-mutator/jest-runner": "8.0.0",
"@stryker-mutator/typescript-checker": "8.0.0",
"@total-typescript/ts-reset": "0.5.1",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/lint-staged": "13.3.0",
"@types/lodash": "4.14.202",
"@types/uuid": "9.0.7",
"@typescript-eslint/eslint-plugin": "6.18.1",
"concurrently": "8.2.2",
"cross-env": "7.0.3",
"eslint": "8.56.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-fp": "2.3.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "27.6.3",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-lodash-fp": "2.2.0-a1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-typescript-sort-keys": "3.1.0",
"eslint-plugin-unicorn": "50.0.1",
"husky": "9.0.7",
"is-ci": "3.0.1",
"jest": "29.7.0",
"lint-staged": "15.2.1",
"memfs": "4.6.0",
"prettier": "2.8.8",
"prettier-plugin-sh": "0.12.8",
"semantic-release": "22.0.8",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"tsc-watch": "6.0.4",
"typescript": "5.3.3"
},
"engines": {
"node": "^16.0.0 || ^18.0.0 || ^20.0.0 || ^22.0.0"
}
}