-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.71 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.71 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
{
"scripts": {
"frontend": "npm run dev --prefix ./frontend/",
"backend": "npm run dev --prefix ./backend/",
"clear": "cd frontend && rm -rf .next && rm -rf cache",
"setup:frontend": "cd frontend && npm install",
"setup:backend": "cd backend && npm install",
"setup": "npm install install && npm run setup:frontend && npm run setup:backend",
"dev": "npm run clear && concurrently \"cd frontend && npm run dev\" \"cd backend && npm run dev\"",
"prettier-check": "npx prettier . --check",
"prettier-write": "npx prettier . --write",
"lint": "cd frontend && eslint app components --ext .js,.ts,.tsx"
},
"dependencies": {
"@aarkue/tiptap-math-extension": "^1.3.4",
"@anthropic-ai/sdk": "^0.60.0",
"@aws-sdk/client-s3": "^3.701.0",
"@aws-sdk/credential-providers": "^3.799.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@lemonsqueezy/wedges": "^1.4.0",
"@mui/material": "^6.4.5",
"@mui/x-date-pickers": "^7.27.0",
"@nextui-org/table": "^2.2.8",
"@tailwindcss/line-clamp": "^0.4.4",
"@tiptap/extension-color": "^2.11.5",
"@tiptap/extension-text-style": "^2.11.5",
"@types/luxon": "^3.4.2",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/react-tabs": "^5.0.4",
"canvas-confetti": "^1.9.3",
"chart.js": "^4.4.9",
"concurrently": "^8.2.2",
"confetti": "^2.0.3",
"dayjs": "^1.11.13",
"install": "^0.13.0",
"katex": "^0.16.21",
"knex": "^3.1.0",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.554.0",
"luxon": "^3.5.0",
"next": "^15.1.3",
"npm-check-updates": "^16.14.15",
"pdf-lib": "^1.17.1",
"pg": "^8.16.3",
"posthog-js": "^1.234.10",
"react": "^18.2.0",
"react-chartjs-2": "^5.3.0",
"react-confetti": "^6.2.2",
"react-datetime-picker": "^6.0.1",
"react-dom": "^18.2.0",
"react-dropdown": "^1.11.0",
"react-dropzone": "^14.3.5",
"react-intersection-observer": "^9.16.0",
"react-router-dom": "^7.1.5",
"react-syntax-highlighter": "^16.1.0",
"react-tabs": "^6.1.0",
"react-wavify": "^1.11.1",
"reactjs-popup": "^2.0.6",
"styled-components": "^6.1.17",
"xlsx": "^0.18.5",
"xlsx-js-style": "^1.2.0"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/canvas-confetti": "^1.9.0",
"@types/jest": "^29.5.14",
"eslint": "^9.26.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"typescript-eslint": "^8.32.0"
}
}