-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.67 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
{
"name": "github-archive",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc --noEmit && ncc build src/start.ts -o build -m",
"dev": "tsx --watch src/start.ts",
"start": "tsx src/start.ts",
"lint": "eslint \"**/*.{ts,tsx}\" --ext .ts",
"lint:fix": "npm run lint -- --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"dependency-update": "npm-check-updates -u --filterVersion \"/^[~^<>]| - |\\.x$/\" --deep && pnpm install",
"generate-schema": "tsx scripts/generate-jobs-schema.ts",
"test": "vitest",
"prepare": "husky"
},
"lint-staged": {
"src/*.ts": "eslint --cache --fix",
"*.{ts,json,yml,yaml,html,md}": "prettier --write"
},
"engines": {
"node": "20",
"pnpm": "8"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"dotenv": "^16.4.5",
"nock": "14.0.0-beta.5",
"node-cron": "^3.0.3",
"winston": "^3.12.0",
"winston-daily-rotate-file": "^5.0.0",
"yaml": "^2.4.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/eslint": "^8.56.5",
"@types/node": "^20.11.24",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.2",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"npm-check-updates": "^16.14.15",
"prettier": "^3.2.5",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vitest": "^1.3.1",
"vitest-mock-extended": "^1.3.1",
"zod-to-json-schema": "^3.22.4",
"zx": "^7.2.3"
}
}