-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.6 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
{
"name": "medtrack-frontend",
"version": "1.0.0",
"private": true,
"dependencies": {
"@gsap/react": "^2.1.2",
"axios": "^1.18.1",
"gsap": "^3.15.0",
"html2canvas": "^1.4.1",
"lenis": "^1.3.25",
"lucide-react": "^1.25.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-scripts": "^5.0.1",
"recharts": "^3.10.0"
},
"devDependencies": {
"@babel/parser": "^7.28.5",
"autoprefixer": "^10.5.4",
"gh-pages": "^6.3.0",
"postcss": "^8.5.23",
"tailwindcss": "^3.4.19",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"jsdom": "^25.0.1",
"msw": "^2.7.3",
"vitest": "^3.1.1"
},
"scripts": {
"start": "react-scripts start",
"test": "vitest run",
"test:watch": "vitest",
"check-syntax": "node scripts/check-syntax.js",
"prebuild": "npm run check-syntax && npm run check-routes",
"build": "react-scripts build",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"check-routes": "node scripts/check-routes.js"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": [
"react-app"
],
"rules": {
"no-unused-vars": "off",
"react-hooks/exhaustive-deps": "off",
"eqeqeq": "off",
"jsx-a11y/anchor-is-valid": "off",
"jsx-a11y/alt-text": "off",
"no-script-url": "off"
}
}
}