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
63 lines (63 loc) · 1.92 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.92 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
{
"name": "svelte-weekly",
"version": "0.0.0",
"description": "svelteweekly.com website",
"main": "index.js",
"type": "module",
"engines": {
"node": ">= 16.13.0"
},
"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://svelteweekly.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",
"@fullhuman/postcss-purgecss": "^4.1.3",
"@sentry/browser": "^6.17.4",
"@sentry/node": "^6.17.4",
"@sentry/tracing": "^6.17.4",
"@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",
"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",
"husky": "^7.0.4",
"lazysizes": "^5.3.2",
"postcss": "^8.4.6",
"postcss-cli": "^9.1.0",
"postcss-load-config": "^3.1.1",
"prettier": "^2.5.1",
"prettier-eslint": "^8.2.2",
"prettier-plugin-tailwindcss": "^0.1.7",
"svelte": "^3.46.3",
"svelte-loading-spinners": "^0.1.7",
"svelte-preprocess": "^4.10.2",
"tailwindcss": "^3.0.18",
"unist-util-visit": "^4.1.0",
"uuid": "^8.3.2"
}
}