-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.45 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.45 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
{
"name": "portfolio",
"version": "0.0.1",
"private": true,
"browserslist": [
"defaults and supports css-math-functions"
],
"scripts": {
"start": "vite dev --open",
"build": "vite build",
"visualize": "(CHART_TEMPLATE=${0:-}; vite build && vite preview)",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"lint:css": "stylelint 'src/**/*.{css,scss,svelte}'",
"format": "prettier --write .",
"postinstall": "husky install"
},
"lint-staged": {
"*.{ts,svelte}": [
"eslint --fix",
"prettier --write"
],
"*.{css,scss,svelte}": [
"stylelint --fix"
]
},
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"iso-3166-1": "^2.1.1",
"just-extend": "^6.2.0",
"just-throttle": "^4.2.0",
"markdown-it": "^14.0.0",
"moment": "^2.30.1",
"puppeteer": "^23.5.3",
"sketches": "portal:./../sketches",
"svelte-fa": "^4.0.2",
"svelte-meta-tags": "^3.1.0",
"workerpool": "^9.0.4"
},
"devDependencies": {
"@kurone-kito/jsonresume-types": "^0.4.0",
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@types/markdown-it": "^13.0.7",
"@types/umami": "^0.1.5",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-ecmascript-compat": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-svelte": "^2.35.1",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"postcss": "^8.4.33",
"postcss-html": "^1.6.0",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.69.7",
"stylelint": "^16.1.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-no-unsupported-browser-features": "^8.0.0",
"svelte": "^4.2.7",
"svelte-check": "^3.6.0",
"svelte-preprocess": "^5.1.3",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^5.0.12"
},
"type": "module",
"packageManager": "yarn@4.1.1"
}