-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.58 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.58 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
{
"name": "portfolio",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@8.x",
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"devDependencies": {
"@babel/runtime": "7.25.9",
"@eslint/js": "9.13.0",
"@storybook/addon-a11y": "8.1.9",
"@storybook/addon-actions": "8.1.9",
"@storybook/addon-docs": "8.1.9",
"@storybook/addon-interactions": "8.1.9",
"@storybook/addon-links": "8.1.9",
"@storybook/addon-viewport": "8.1.9",
"@storybook/react": "8.1.9",
"@storybook/react-vite": "8.1.9",
"@swc/cli": "0.5.0",
"@swc/core": "1.7.39",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "8.6.0",
"@typescript-eslint/parser": "8.6.0",
"@utrecht/component-library-css": "6.1.0",
"@utrecht/component-library-react": "7.2.0",
"@utrecht/design-tokens": "2.1.1",
"@vitejs/plugin-react": "4.3.3",
"@vitejs/plugin-react-swc": "3.7.1",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-mdx": "3.1.5",
"eslint-plugin-react": "7.36.1",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-react-refresh": "0.4.13",
"eslint-plugin-storybook": "0.10.1",
"husky": "^8.0.0",
"lint-staged": "15.2.10",
"markdownlint-cli": "0.41.0",
"npm-run-all": "4.1.5",
"postcss": "8.4.47",
"prettier": "3.3.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"storybook": "^8.3.6",
"stylelint": "16.9.0",
"stylelint-config-standard": "36.0.1",
"stylelint-config-standard-scss": "13.1.0",
"stylelint-order": "6.0.4",
"typescript": "5.6.2",
"vite": "5.4.10",
"vite-plugin-svgr": "4.3.0"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky install",
"lint": "npm-run-all --continue-on-error --parallel lint:*",
"lint:ts": "eslint 'src/**/*.{ts,tsx}'",
"lint:style": "stylelint 'src/**/*.css'",
"lint:format": "prettier --check .",
"fix": "npm-run-all --continue-on-error --sequential fix:*",
"fix:ts": "eslint 'src/**/*.{ts,tsx}' --fix",
"fix:style": "stylelint 'src/**/*.css' --fix",
"fix:format": "prettier --write ."
},
"dependencies": {
"@emailjs/browser": "4.4.1",
"@fontsource/atkinson-hyperlegible": "5.1.0",
"@types/react-router-dom": "5.3.3",
"lucide-react": "0.475.0",
"react-router-dom": "6.28.0"
}
}