-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.51 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.51 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
{
"name": "studymesh",
"version": "1.0.0",
"scripts": {
"start": "webpack-cli serve --mode development",
"start:vercel": "node scripts/start-vercel-dev.cjs",
"start:live": "webpack-cli serve --mode development --live-reload --hot",
"build": "webpack-cli --mode production --config webpack.config.prod.js",
"serve": "serve -l 3000 -s dist",
"bs": "npm run build && npm run serve",
"test": "vitest --run --config ./vitest.config.ts ./tests/unit/ --reporter verbose && npx playwright test",
"test:unit": "vitest --run --config ./vitest.config.ts ./tests/unit/",
"test:e2e": "npx playwright test",
"test:snapshot": "npx playwright test --update-snapshots",
"twd:relay": "twd-relay --port 9876",
"test:twd": "twd-relay run --port 9876",
"test:twd:one": "twd-relay run --port 9876 --test"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@eslint/js": "^9.9.0",
"@percy/cli": "^1.29.3",
"@percy/playwright": "^1.0.6",
"@playwright/test": "^1.46.1",
"@svgr/webpack": "^8.1.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/lodash": "^4.17.7",
"@types/node": "^22.2.0",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.1.0",
"babel-loader": "^8.3.0",
"babel-plugin-named-exports-order": "^0.0.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.11.0",
"dotenv": "^16.4.5",
"dotenv-webpack": "^8.1.0",
"eslint": "^9.9.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-storybook": "^0.6.13",
"globals": "^15.9.0",
"html-webpack-plugin": "^5.3.2",
"postcss": "^8.2.1",
"postcss-loader": "^4.1.0",
"sass": "^1.77.6",
"sass-loader": "^14.2.1",
"serve": "^14.2.3",
"style-loader": "^3.3.4",
"swc-loader": "^0.2.6",
"twd-js": "^1.8.1",
"twd-relay": "^1.2.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0",
"url-loader": "^4.1.1",
"vitest": "^2.0.5",
"webpack": "^5.92.1",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.15.2"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fontsource/jetbrains-mono": "^5.0.9",
"@fontsource/readex-pro": "^5.0.8",
"@mui/icons-material": "^5.14.1",
"@mui/lab": "^5.0.0-alpha.137",
"@mui/material": "^5.14.1",
"@supabase/supabase-js": "^2.107.0",
"@tiptap/extension-link": "^3.26.1",
"@tiptap/extension-list": "^3.26.1",
"@tiptap/extension-placeholder": "^3.26.1",
"@tiptap/extension-table": "^3.26.1",
"@tiptap/markdown": "^3.26.1",
"@tiptap/react": "^3.26.1",
"@tiptap/starter-kit": "^3.26.1",
"@vitejs/plugin-react": "^4.3.1",
"axios": "^1.4.0",
"date-fns": "^4.1.0",
"flexlayout-react": "^0.7.8",
"happy-dom": "^15.3.1",
"jsdom": "^25.0.0",
"jszip": "^3.10.1",
"nanoid": "^4.0.2",
"pdfjs-dist": "^3.11.174",
"prettier": "3.0.0",
"primeflex": "^3.3.1",
"primeicons": "^7.0.0",
"primereact": "^10.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.26.1",
"react-tabs": "^6.0.2",
"react-use": "^17.4.0",
"socket.io-client": "2.1.1",
"tesseract.js": "^7.0.0",
"uuid": "^11.1.1",
"web-vitals": "^2.1.4",
"zod": "^4.4.3",
"zustand": "^4.5.4"
}
}