-
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) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.9 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": "nexus-student-management-system",
"version": "2.0.0",
"description": "Enterprise-grade Student Management System with advanced algorithms and real-time analytics",
"author": "Parth Rai <parth@example.com>",
"homepage": "https://github.com/IMFParth/nexus-student-management-system",
"repository": {
"type": "git",
"url": "https://github.com/IMFParth/nexus-student-management-system.git"
},
"keywords": [
"student-management",
"education",
"react",
"typescript",
"enterprise",
"analytics",
"machine-learning"
],
"private": false,
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.19",
"@mui/material": "^5.14.20",
"@mui/x-data-grid": "^6.18.2",
"@mui/x-date-pickers": "^6.18.2",
"@reduxjs/toolkit": "^2.0.1",
"axios": "^1.6.2",
"bcryptjs": "^2.4.3",
"chart.js": "^4.4.0",
"date-fns": "^2.30.0",
"formik": "^2.4.5",
"framer-motion": "^10.16.16",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"react-redux": "^9.0.4",
"react-router-dom": "^6.20.1",
"react-scripts": "5.0.1",
"react-toastify": "^9.1.3",
"react-virtualized": "^9.22.5",
"recharts": "^2.8.0",
"uuid": "^9.0.1",
"web-vitals": "^3.5.0",
"yup": "^1.3.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.8",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.0",
"@types/react": "^18.2.39",
"@types/react-dom": "^18.2.17",
"@types/react-virtualized": "^9.21.29",
"@types/uuid": "^9.0.7",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.0",
"typescript": "^5.3.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint src --ext .ts,.tsx,.js,.jsx --fix",
"format": "prettier --write src/**/*.{ts,tsx,js,jsx,json,css,md}",
"analyze": "npm run build && npx source-map-explorer 'build/static/js/*.js'",
"deploy": "npm run build && npm run deploy:gh-pages",
"deploy:gh-pages": "gh-pages -d build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}