-
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.62 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.62 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": "leetcode-revision-architect",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"server": "node server/index.js",
"build": "vite build",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"lint": "cross-env ESLINT_USE_FLAT_CONFIG=false eslint . --ext .ts,.tsx,.js,.jsx --max-warnings 0",
"lint:fix": "cross-env ESLINT_USE_FLAT_CONFIG=false eslint . --ext .ts,.tsx,.js,.jsx --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"validate": "npm run type-check && npm run lint && npm run format:check && npm run test:run",
"prepare": "husky"
},
"dependencies": {
"@upstash/redis": "^1.35.8",
"bcryptjs": "^3.0.3",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-rate-limit": "^7.5.0",
"fast-levenshtein": "^3.0.0",
"framer-motion": "^12.23.26",
"gsap": "^3.13.0",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"jspdf": "^3.0.4",
"konva": "^10.0.12",
"lucide-react": "^0.555.0",
"mermaid": "^11.12.1",
"mongoose": "^9.0.0",
"nodemailer": "^7.0.11",
"razorpay": "^2.9.6",
"react": "^19.2.0",
"react-d3-tree": "^3.6.6",
"react-dom": "^19.2.0",
"react-konva": "^19.2.1",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"react-zoom-pan-pinch": "^3.7.0",
"reactflow": "^11.11.4",
"tailwind-merge": "^3.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@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/node": "^22.14.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitejs/plugin-react": "^5.0.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.0",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"cross-env ESLINT_USE_FLAT_CONFIG=false eslint --fix",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
}
}