-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
37 lines (37 loc) · 1.16 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
{
"name": "cron-jobs",
"version": "0.0.0",
"private": true,
"scripts": {
"deploy": "wrangler publish",
"start": "wrangler dev",
"test": "echo 'running tests 🧪' && jest --coverage && echo '✅ All tests passed'",
"lint-check": "echo 'checking your code for linting issues 🤔' && eslint ./src/ && echo '✅ Your code passes lint check'",
"format-check": "echo 'Checking the formatting of your code 👨💻' && prettier --check ./src/ && echo '✅ code matches prettier formatting'",
"format-fix": "prettier --write ./src/"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20240909.0",
"@types/jest": "29.5.3",
"@types/node": "20.4.4",
"@typescript-eslint/eslint-plugin": "6.2.0",
"@typescript-eslint/parser": "6.2.0",
"eslint": "8.45.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "29.6.1",
"pre-commit": "1.2.2",
"prettier": "3.0.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.1.6",
"wrangler": "3.78.1"
},
"dependencies": {
"@tsndr/cloudflare-worker-jwt": "2.2.1"
},
"pre-commit": [
"lint-check",
"format-check",
"test"
]
}