This repository has been archived by the owner on Aug 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
121 lines (121 loc) · 3.86 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "cast",
"version": "0.1.0",
"description": "A podcast listening PWA",
"private": true,
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build",
"preview": "svelte-kit preview",
"test:e2e": "cypress run",
"test:e2e-open": "cypress open",
"test:unit": "jest src",
"lint": "run-p lint:* --aggregate-output --continue-on-error --silent",
"fix": "run-s fix:* --continue-on-error --silent",
"lint:eslint": "eslint . --cache",
"lint:prettier": "prettier --check . --plugin-search-dir=.",
"lint:svelte-check": "svelte-check --tsconfig ./tsconfig.json --fail-on-warnings --use-new-transformation",
"fix:eslint": "eslint . --fix --cache",
"fix:prettier": "prettier --write . --plugin-search-dir=.",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install; svelte-kit sync"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aabounegm/cast.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/aabounegm/cast/issues"
},
"homepage": "https://github.com/aabounegm/cast#readme",
"contributors": [
"Lev Chelyadinov (https://github.com/illright)",
"Maxim Korsunov (https://github.com/vanishmax)",
"AbdelRahman Abounegm (https://github.com/aabounegm)",
"Magomed (https://github.com/alkaitagi)",
"Khaled Ismaeel (https://github.com/khaledismaeel)"
],
"keywords": [
"cast",
"podcasts",
"pwa",
"svelte"
],
"type": "module",
"devDependencies": {
"@applitools/eyes-cypress": "^3.25.5",
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@iconify-json/ic": "^1.1.2",
"@sveltejs/adapter-cloudflare": "^1.0.0-next.17",
"@sveltejs/kit": "next",
"@testing-library/cypress": "^8.0.2",
"@testing-library/dom": "^8.12.0",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/svelte": "^3.1.0",
"@testing-library/user-event": "^14.0.4",
"@types/cookie": "^0.5.1",
"@types/dompurify": "^2.3.3",
"@types/html-to-text": "^8.1.0",
"@types/js-cookie": "^3.0.2",
"@types/lodash-es": "^4.17.6",
"@types/marked": "^4.0.3",
"@types/node": "^17.0.23",
"@types/web-app-manifest": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"autoprefixer": "^10.4.4",
"babel-jest": "^27.5.1",
"babel-plugin-svelte-inline-compile": "^0.1.0",
"babel-preset-vite": "^1.0.4",
"blns": "^2.0.4",
"cypress": "^9.5.4",
"dotenv": "^16.0.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-svelte3": "^3.4.1",
"eslint-plugin-testing-library": "^5.2.0",
"html-to-text": "^8.2.0",
"husky": "^7.0.4",
"isomorphic-fetch": "^3.0.0",
"jest": "^27.5.1",
"jest-extended": "^2.0.0",
"jest-mock-fetch": "^2.0.5",
"lint-staged": "^12.3.7",
"lodash-es": "^4.17.21",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"prettier": "^2.6.1",
"prettier-plugin-svelte": "^2.6.0",
"svelte": "^3.46.6",
"svelte-check": "^2.4.6",
"svelte-inline-compile": "^0.1.0",
"svelte-jester": "^2.3.2",
"svelte-preprocess": "^4.10.4",
"tailwindcss": "^3.0.23",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"typescript": "^4.6.3",
"unplugin-icons": "^0.13.4",
"vite-imagetools": "^4.0.3",
"web-streams-polyfill": "^3.2.0",
"workbox-range-requests": "^6.5.3"
},
"dependencies": {
"@fontsource/lato": "^4.5.5",
"@fontsource/raleway": "^4.5.5",
"@supabase/supabase-js": "^1.33.2",
"clsx": "^1.1.1",
"cookie": "^0.5.0",
"dompurify": "^2.3.6",
"js-cookie": "^3.0.1",
"marked": "^4.0.12",
"svelte-persistent-writable": "^1.1.6",
"uid": "^2.0.0",
"worker-request-response": "^1.0.3"
}
}