-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1022 Bytes
/
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
{
"name": "pd-extract-environment-from-title",
"version": "0.0.0",
"devDependencies": {
"@cloudflare/workers-types": "^4.20231016.0",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.52.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-unicorn": "^48.0.1",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"typescript": "^5.1.6",
"wrangler": "3.23.0"
},
"private": true,
"scripts": {
"build": "wrangler deploy --dry-run",
"start": "wrangler dev",
"deploy:dev": "wrangler deploy --env dev",
"deploy:production": "wrangler deploy",
"lint": "eslint . && prettier --check '**/*.{js,ts,cjs}'",
"lint:fix": "eslint . --fix",
"format": "prettier --write '**/*.{js,ts,cjs}'"
},
"dependencies": {
"@aws-sdk/client-eventbridge": "^3.433.0",
"fetch-retry": "^5.0.6"
}
}