-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.54 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
60
61
62
63
{
"name": "huddless",
"version": "1.0.0",
"scripts": {
"dev": "npx wrangler dev",
"publish": "npx wrangler publish"
},
"author": "ru-web-designer",
"license": "MIT",
"eslintConfig": {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"standard-with-typescript",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"prettier",
"@typescript-eslint"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": "tsconfig.json"
},
"rules": {
"@typescript-eslint/restrict-template-expressions": 0,
"@typescript-eslint/strict-boolean-expressions": 0,
"@typescript-eslint/no-misused-promises": 0,
"prettier/prettier": "error"
}
},
"devDependencies": {
"@cloudflare/workers-types": "^3.14.1",
"@types/jest": "^28.1.6",
"@types/node": "^18.11.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.0",
"jest": "^28.1.3",
"jest-environment-miniflare": "^2.6.0",
"miniflare": "^2.6.0",
"prettier": "2.7.1",
"ts-jest": "^28.0.7",
"typescript": "^4.8.4",
"wrangler": "^2.0.24"
},
"dependencies": {
"@tsndr/cloudflare-worker-router": "^2.2.0",
"date-fns": "^2.29.3",
"yup": "^0.32.11"
}
}