This repository was archived by the owner on May 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.78 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.78 KB
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
{
"name": "unspecified-sveltekit-template",
"version": "0.0.0",
"description": "a sveltekit tempalte we use to bootstrap projects",
"main": "index.js",
"type": "module",
"engines": {
"node": ">= 14.18.3"
},
"repository": {
"type": "git",
"url": "https://github.com/"
},
"license": "MIT",
"scripts": {
"prepare": "husky install",
"dev": "env-cmd svelte-kit dev",
"local:build": "env-cmd svelte-kit build",
"build": "svelte-kit build",
"preview": "svelte-kit preview",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. ./src && eslint --ignore-path .gitignore ./src",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. ./src",
"validate": "concurrently npm:lint",
"build:sitemap": "npx sitemap-generator-cli https://[site.com] --last-mod --change-freq weekly --filepath ./static/sitemap.xml --priority-map 1.0"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fullhuman/postcss-purgecss": "^4.1.3",
"@okrad/svelte-progressbar": "^1.11.3",
"@sentry/browser": "^6.17.4",
"@sentry/node": "^6.17.4",
"@sentry/tracing": "^6.17.4",
"@stripe/stripe-js": "^1.22.0",
"@sveltejs/adapter-auto": "next",
"@sveltejs/kit": "next",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.1",
"@tailwindcss/typography": "^0.5.1",
"@xstate/inspect": "^0.6.2",
"autoprefixer": "^10.4.2",
"concurrently": "^7.0.0",
"cssnano": "^5.0.16",
"dayjs": "^1.10.7",
"env-cmd": "^10.1.0",
"esbuild": "^0.14.18",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^3.4.0",
"fetch-retry": "^5.0.1",
"husky": "^7.0.4",
"isomorphic-fetch": "^3.0.0",
"lazysizes": "^5.3.2",
"lodash": "^4.17.21",
"marked": "^4.0.12",
"mdsvex": "^0.10.5",
"moment-timezone": "^0.5.34",
"omit-deep": "^0.3.0",
"postcss": "^8.4.6",
"postcss-cli": "^9.1.0",
"postcss-load-config": "^3.1.1",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"prettier-plugin-tailwindcss": "^0.1.7",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.0.1",
"remark-preview": "^1.0.2",
"remark-reading-time": "1.0.1",
"svelte": "^3.46.3",
"svelte-awesome": "^2.4.4",
"svelte-checkbox": "^1.0.1",
"svelte-content-loader": "^1.1.3",
"svelte-headroom": "^2.2.1",
"svelte-infinite-scroll": "^2.0.0",
"svelte-loading-spinners": "^0.1.7",
"svelte-preprocess": "^4.10.2",
"svelte-scrollto": "^0.2.0",
"svelte-select": "^4.4.7",
"svelte-tags-input": "^2.8.1",
"sveltejs-forms": "^2.1.2",
"tailwindcss": "^3.0.18",
"unist-util-visit": "^4.1.0",
"uuid": "^8.3.2",
"xstate": "^4.29.0",
"xstate-svelte": "^1.0.1",
"yup": "^0.32.11"
}
}