-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.52 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
{
"name": "codecritic-ai-frontend",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "AI-powered code review application built with React and Vite",
"keywords": [
"react",
"vite",
"code-review",
"ai",
"javascript"
],
"author": "aditya-Kumar421",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext js,jsx --fix",
"format": "prettier --write \"src/**/*.{js,jsx,css,json}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,css,json}\"",
"preview": "vite preview",
"type-check": "tsc --noEmit"
},
"dependencies": {
"axios": "^1.10.0",
"cors": "^2.8.5",
"prismjs": "^1.30.0",
"prop-types": "^15.8.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.9.1",
"react-simple-code-editor": "^0.14.1",
"recharts": "^3.2.0",
"rehype-highlight": "^7.0.2",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.5.2",
"eslint": "^9.29.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.2.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"vite": "^7.0.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}