-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.3 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.3 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
91
{
"name": "website",
"private": true,
"version": "0.0.1",
"type": "module",
"lint-staged": {
"*.{js,ts,svelte}": [
"eslint --fix",
"prettier --write "
],
"*.{css,md,json}": "prettier --write"
},
"scripts": {
"dev": "vite dev",
"predev": "npm run setup:static",
"prebuild": "npm run clean && npm run fix && npm run lint && npm run setup:static",
"build": "vite build",
"postbuild": "cp build/index.html build/404.html && touch build/.nojekyll",
"deploy": "npm run build && npm run postbuild && gh-pages -d build --dotfiles",
"preview": "node scripts/preview.js",
"prepare": "husky",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"fix": "npm run lint:fix && npm run format",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"generate:critical-css": "sass src/styles/foundations/index.scss static/index.css --no-source-map --style=compressed",
"generate:og": "node scripts/generate-og-images.js",
"generate:favicon": "node scripts/generate-favicon.js",
"setup:static": "npm run generate:og && npm run generate:favicon && npm run generate:critical-css",
"clean": "rm -rf static build .lighthouseci docs/lhci",
"lighthouse": "rm -rf .lighthouseci && lhci autorun",
"screenshot:reports": "node scripts/screenshot-reports.js",
"screenshot:website": "node scripts/screenshot-website.js",
"screenshot:all": "npm run screenshot:website & npm run screenshot:reports & wait;"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.0.1",
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.18.0",
"@lhci/cli": "^0.15.1",
"@storybook/addon-docs": "^9.0.17",
"@storybook/addon-svelte-csf": "^5.0.7",
"@storybook/addon-vitest": "^9.0.17",
"@storybook/mdx2-csf": "^1.1.0",
"@storybook/sveltekit": "^9.0.17",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/enhanced-img": "^0.7.1",
"@types/node": "^20",
"cssnano": "^7.1.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^3.0.4",
"eslint-plugin-storybook": "^9.1.1",
"eslint-plugin-svelte": "^3.11.0",
"eslint-plugin-unused-imports": "^4.1.4",
"gh-pages": "^6.3.0",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"mdsvex": "^0.12.6",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.3.3",
"rollup-plugin-bundle-stats": "^4.21.2",
"rollup-plugin-filesize": "^10.0.0",
"sass": "^1.89.2",
"scss": "^0.2.4",
"sharp": "^0.34.3",
"storybook": "^9.0.17",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"svelte-preprocess": "^6.0.3",
"terser": "^5.43.1",
"typescript": "^5.0.0",
"typescript-eslint": "^8.20.0",
"vite": "^7.1.1",
"vite-imagetools": "^7.1.0"
},
"dependencies": {
"@fontsource/inter": "^5.2.6",
"puppeteer": "^24.16.0",
"yarn": "^1.22.22"
}
}