-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.23 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
{
"name": "acearchive-files-worker",
"version": "0.1.0",
"private": true,
"description": "Serverless functions for hosting files on Ace Archive",
"homepage": "https://github.com/acearchive/files-worker#readme",
"bugs": {
"url": "https://github.com/acearchive/files-worker/issues"
},
"scripts": {
"format": "prettier --write '**/*.ts'",
"lint": "eslint src/**/*.ts && prettier --check '**/*.ts'",
"start": "wrangler dev",
"deploy": "wrangler publish",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/acearchive/files-worker"
},
"author": {
"name": "Frawley",
"url": "https://github.com/frawleyskid"
},
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^4.20240208.0",
"@types/jest": "^29.1.1",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-jest": "^27.1.1",
"jest": "^29.1.2",
"jest-environment-miniflare": "^2.9.0",
"miniflare": "^2.9.0",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4",
"wrangler": "^3.28.1"
}
}