-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
128 lines (128 loc) · 3.27 KB
/
package.json
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "medienhaus-frontend",
"private": true,
"scripts": {
"dev": "NEXT_TELEMETRY_DISABLED=1 next",
"build": "NEXT_TELEMETRY_DISABLED=1 next build",
"start": "NEXT_TELEMETRY_DISABLED=1 next start",
"export": "NEXT_TELEMETRY_DISABLED=1 next build && NEXT_TELEMETRY_DISABLED=1 next export"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@remixicon/react": "^4.1.1",
"@tanstack/react-table": "^8.13.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"driver.js": "^1.3.1",
"@tldraw/assets": "^2.0.2",
"i18next": "^23.8.2",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-resources-to-backend": "^1.2.0",
"immer": "^10.0.3",
"lodash": "^4.17.21",
"matrix-js-sdk": "^31.2.0",
"next": "^14.1.0",
"next-themes": "^0.2.1",
"pino": "^8.18.0",
"postcss": "^8.4.33",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.0.5",
"sonner": "^1.4.3",
"styled-components": "^6.1.8",
"tailwindcss-animate": "^1.0.7",
"tldraw": "^2.1.0-canary.cd02d03d063b",
"use-immer": "^0.9.0",
"vaul": "^0.9.0"
},
"devDependencies": {
"autoprefixer": "^10.4.17",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-matrix-org": "^1.2.1",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwind-merge": "^2.2.1",
"tailwindcss": "^3.4.1"
},
"eslintConfig": {
"plugins": [
"matrix-org"
],
"extends": [
"next",
"plugin:matrix-org/javascript",
"plugin:matrix-org/a11y",
"plugin:matrix-org/react",
"plugin:import/recommended"
],
"env": {
"es6": true
},
"rules": {
"padding-line-between-statements": [
"error",
{
"blankLine": "always",
"prev": "*",
"next": "return"
},
{
"blankLine": "always",
"prev": "*",
"next": "export"
},
{
"blankLine": "always",
"prev": "*",
"next": "multiline-block-like"
},
{
"blankLine": "always",
"prev": "multiline-block-like",
"next": "*"
}
],
"quotes": [
"error",
"single",
{
"avoidEscape": true
}
]
},
"settings": {
"import/resolver": {
"alias": {
"map": [
[
"@/components",
"./components"
],
[
"@/lib",
"./lib"
]
]
}
}
}
}
}