-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.69 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.69 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
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
{
"name": "shot-client-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3001 --turbopack",
"build": "next build",
"start": "next start",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
"lint": "eslint --fix \"src/**/*.{ts,tsx}\"",
"fl": "prettier --write \"src/**/*.{ts,tsx}\" && eslint --fix \"src/**/*.{ts,tsx}\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"e2e:debug": "playwright test --debug",
"e2e:ci": "playwright test --reporter=junit",
"generate:component": "plop",
"generate:index": "plop",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fontsource/roboto": "^5.2.6",
"@mui/icons-material": "^7.2.0",
"@mui/material": "^7.2.0",
"@mui/material-nextjs": "^7.3.5",
"@mui/x-data-grid": "^8.10.0",
"@opentelemetry/sdk-node": "^0.208.0",
"@rails/actioncable": "^8.0.200",
"@simplewebauthn/browser": "^13.1.0",
"@testing-library/dom": "^10.4.1",
"@tiptap/core": "^2.26.1",
"@tiptap/extension-code-block-lowlight": "^2.27.2",
"@tiptap/extension-image": "^2.27.2",
"@tiptap/extension-link": "^2.27.2",
"@tiptap/extension-mention": "^2.26.1",
"@tiptap/extension-table": "^2.27.2",
"@tiptap/react": "^2.26.1",
"@tiptap/starter-kit": "^2.26.1",
"@tiptap/suggestion": "^2.27.2",
"@types/jszip": "^3.4.0",
"axios": "^1.11.0",
"date-fns": "^4.1.0",
"dompurify": "^3.2.6",
"html-react-parser": "^5.2.6",
"isomorphic-dompurify": "^2.26.0",
"js-cookie": "^3.0.5",
"jszip": "^3.10.1",
"lodash.debounce": "^4.0.8",
"motion": "^12.23.12",
"motion-dom": "^12.26.2",
"mui-tiptap": "^1.22.0",
"next": "^16.0.1",
"phoenix": "^1.8.1",
"pluralize": "^8.0.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"sass": "^1.89.2",
"tippy.js": "^6.3.7",
"typescript-eslint": "^8.38.0",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@opentelemetry/sdk-logs": "^0.208.0",
"@opentelemetry/sdk-trace-base": "^2.2.0",
"@playwright/test": "^1.55.0",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20",
"@types/pluralize": "^0.0.33",
"@types/rails__actioncable": "^6.1.11",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.32.0",
"eslint-config-next": "^16.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-drizzle": "^0.2.3",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-unicorn": "^60.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock-extended": "^4.0.0-beta7",
"lint-staged": "^16.2.7",
"plop": "^4.0.1",
"prettier": "^3.6.2",
"tidewave": "^0.5.5",
"typescript": "^5"
}
}