-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.88 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.88 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
{
"name": "lvmweb",
"version": "1.4.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "next lint && npm run lint:stylelint",
"lint:stylelint": "stylelint '**/*.css' --cache",
"jest": "jest",
"jest:watch": "jest --watch",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"test": "npm run prettier:check && npm run lint && npm run typecheck && npm run jest",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"dependencies": {
"@mantine/core": "8.3.15",
"@mantine/form": "^8.3.15",
"@mantine/hooks": "8.3.15",
"@mantine/notifications": "^8.3.15",
"@next/bundle-analyzer": "^16.1.6",
"@tabler/icons": "^3.37.1",
"@tabler/icons-react": "^3.37.1",
"@visx/visx": "^3.12.0",
"next": "16.1.6",
"next-client-cookies": "^2.1.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"react-use": "^17.6.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@eslint/js": "^9.39.2",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@next/eslint-plugin-next": "^16.1.6",
"@storybook/addon-essentials": "8.6.14",
"@storybook/addon-styling-webpack": "^3.0.0",
"@storybook/blocks": "8.6.14",
"@storybook/nextjs": "^10.2.10",
"@storybook/react": "^10.2.10",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.0",
"@types/postcss-modules-values": "^4.0.2",
"@types/react": "19.2.14",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"babel-loader": "^10.0.0",
"eslint": "^9.39.2",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-mantine": "^4.0.3",
"eslint-config-next": "^16.1.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-testing-library": "^7.16.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"postcss": "^8.5.6",
"postcss-modules-values": "^4.0.0",
"postcss-preset-mantine": "1.18.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.8.1",
"storybook": "^10.2.10",
"storybook-dark-mode": "^4.0.2",
"stylelint": "^17.3.0",
"stylelint-config-standard-scss": "^17.0.0",
"ts-jest": "^29.4.6",
"typescript": "5.9.3",
"typescript-eslint": "^8.56.0"
},
"packageManager": "yarn@4.6.0"
}