-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.37 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
{
"name": "ptrk-fm-worker",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"scripts": {
"format": "prettier --write '*.{json,js}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
"lint": "eslint --max-warnings=0 src && prettier --check '*.{json,js}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
"dev": "miniflare --watch --debug -p 8080",
"build": "esbuild --bundle --sourcemap --outdir=dist --format=esm --target=node14 ./src/index.ts",
"deploy": "wrangler publish && ( cd ./src/auth-worker && wrangler publish )"
},
"author": "Bohdan Tkachuk <b.tkachuk26@gmail.com>",
"license": "ISC",
"eslintConfig": {
"root": true,
"extends": [
"typescript",
"prettier"
]
},
"devDependencies": {
"@cloudflare/workers-types": "^3.4.0",
"@types/node": "^17.0.21",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"esbuild": "^0.14.26",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-typescript": "^3.0.0",
"itty-router": "^2.5.2",
"miniflare": "^2.3.0",
"prettier": "^2.3.0",
"typescript": "^4.3.2",
"uuid": "^8.3.2"
},
"dependencies": {
"zod": "^3.14.4"
}
}