-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.4 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
{
"name": "indic",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migrate": "npx sequelize-cli db:migrate",
"unmigrate": "npx sequelize-cli db:migrate:undo:all",
"seed": "npx sequelize-cli db:seed:all",
"unseed": "npx sequelize-cli db:seed:undo:all",
"swagger-autogen": "node ./swagger.js"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mkyy/mui-search-bar": "^0.5.2",
"@mui/icons-material": "^5.14.9",
"@mui/material": "^5.14.10",
"@mui/x-date-pickers": "^6.15.0",
"@next/font": "^13.5.2",
"axios": "^1.5.1",
"bootstrap": "^5.3.2",
"chart.js": "^4.4.0",
"cors": "^2.8.5",
"date-fns": "^2.0.0-alpha.35",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"eslint": "8.49.0",
"eslint-config-next": "13.4.19",
"express": "^4.18.2",
"firebase-admin": "^11.11.0",
"mysql2": "^3.6.1",
"next": "13.4.19",
"next-fonts": "^1.5.1",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-date-picker": "^10.5.0",
"react-dom": "18.2.0",
"sequelize": "^6.33.0"
},
"devDependencies": {
"bcrypt": "^5.1.1",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"papaparse": "^5.4.1",
"swagger-autogen": "^2.23.6",
"swagger-ui-express": "^5.0.0"
}
}