-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.03 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.03 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
{
"private": true,
"type": "module",
"engines": {
"node": "18.19.x",
"npm": "10.x"
},
"dependencies": {
"@microsoft/signalr": "^7.0.5",
"axios": "^1.6.8",
"bootstrap-icons": "^1.11.3",
"classnames": "^2.3.2",
"color-string": "^1.9.1",
"oidc-client-ts": "^2.2.1",
"react": "^18.2",
"react-dom": "^18.2",
"react-oidc-context": "^2.2.2",
"react-router-dom": "^6.21.3"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.6.10",
"@storybook/addon-interactions": "^7.6.14",
"@storybook/addon-links": "^7.6.7",
"@storybook/addon-onboarding": "^1.0.11",
"@storybook/blocks": "^7.6.17",
"@storybook/react": "^7.6.7",
"@storybook/react-vite": "^8.0.8",
"@storybook/test": "^7.6.10",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@testing-library/dom": "^9.3.3",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.2.1",
"@types/node": "^20.12.7",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.7.4",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.14",
"cssnano": "^6.1.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-storybook": "^0.6.15",
"happy-dom": "^20.8.9",
"postcss": "^8.4.36",
"prettier": "^3.2.5",
"sass": "^1.57.1",
"storybook": "^7.6.17",
"tailwindcss": "^3.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"vite": "^5.2.8",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^1.1.3"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"test": "vitest",
"lint": "tsc --noEmit && eslint src && prettier . --check",
"format": "prettier . --write",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
}
}