forked from JacobLinCool/hermes-mail-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.45 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"private": true,
"type": "module",
"name": "hermes-mail-service",
"author": "JacobLinCool <[email protected]> (https://jacoblin.cool)",
"version": "1.2.0",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"dev": "vite dev",
"build": "tsx scripts/build-templates.ts && vite build",
"preview": "vite preview",
"test": "playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest",
"lint": "prettier --ignore-path .gitignore --check **/*.{ts,js,json,yaml,yml,svelte,html,css} && eslint .",
"format": "prettier --ignore-path .gitignore --write **/*.{ts,js,json,yaml,yml,svelte,html,css}"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@cloudflare/workers-types": "^4.20230115.0",
"@iconify/svelte": "^3.1.0",
"@playwright/test": "^1.30.0",
"@sveltejs/adapter-cloudflare": "^2.0.1",
"@sveltejs/kit": "^1.5.6",
"@tailwindcss/typography": "^0.5.9",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@tsndr/cloudflare-worker-jwt": "^2.2.1",
"@types/cookie": "^0.5.1",
"@types/debug": "^4.1.7",
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"autoprefixer": "^10.4.13",
"daisyui": "^2.50.0",
"debug": "^4.3.4",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^8.0.3",
"jest": "^29.4.2",
"lint-staged": "^13.1.1",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-svelte": "^2.9.0",
"prettier-plugin-tailwindcss": "^0.2.2",
"serve": "^14.2.0",
"svelte": "^3.55.1",
"svelte-check": "^3.0.3",
"svelte-i18n": "^3.6.0",
"tailwindcss": "^3.2.6",
"ts-jest": "^29.0.5",
"tslib": "^2.5.0",
"tsup": "^6.6.2",
"tsx": "^3.12.3",
"typedoc": "^0.23.25",
"typescript": "^4.9.5",
"vite": "^4.1.1",
"vitest": "^0.28.4",
"wrangler": "^2.9.1",
"zod": "^3.20.6",
"zod-validation-error": "^0.3.1"
},
"lint-staged": {
"*.{ts,js,json,yaml,yml,svelte,html,css}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/JacobLinCool/hermes-mail-service.git"
},
"bugs": {
"url": "https://github.com/JacobLinCool/hermes-mail-service/issues"
},
"homepage": "https://jacoblincool.github.io/hermes-mail-service"
}