forked from navgurukul/kalam
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.28 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.28 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
{
"name": "kalam",
"version": "2.0.0",
"description": "Updated Kalam Repo",
"main": "src/app.jsx",
"scripts": {
"clean": "rm -rf node_modules && rm -rf dist",
"oldbuild": "mkdir dist; cp public/index.html dist/index.html && cp public/favicon.ico dist/favicon.ico && cp public/index.html dist/404.html && NODE_ENV=production ./node_modules/webpack/bin/webpack.js --config webpack.prod.js",
"build": "vite build",
"preview": "vite preview --port 8080",
"dev": "vite",
"olddev-build": "mkdir dev-dist; cp public/index.html dev-dist/index.html && cp public/favicon.ico dev-dist/favicon.ico && cp public/index.html dev-dist/404.html && NODE_ENV=production ./node_modules/webpack/bin/webpack.js --config webpack.dev.js",
"dev-build": "vite build --mode development",
"predeploy": "npm run build && cd src/config && git pull origin master && cd ../..",
"deploy": "gh-pages -d dist",
"lint": "eslint src --fix",
"checklint": "eslint src",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --quiet --cache --fix --max-warnings=0"
],
"*.{json,js,jsx,html}": [
"prettier --write"
]
},
"gh-pages-deploy": {
"staticpath": "dist",
"cname": "admissions.navgurukul.org",
"prep": [
"predeploy"
],
"post": [
"clean"
],
"noprompt": true
},
"repository": "https://github.com/navgurukul/kalam",
"homepage": "https://navgurukul.github.io/kalam",
"author": "NavGurukul",
"dependencies": {
"@date-io/date-fns": "^2.13.1",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@jy95/material-ui-image": "^4.0.0",
"@mui/icons-material": "^5.5.1",
"@mui/lab": "^5.0.0-alpha.74",
"@mui/material": "^5.5.2",
"@mui/styles": "^5.5.1",
"@mui/x-data-grid": "^5.17.14",
"@mui/x-date-pickers": "^5.0.9",
"@reduxjs/toolkit": "^1.8.0",
"@sentry/react": "^7.46.0",
"axios": "^0.26.1",
"date-fns": "^2.29.1",
"dayjs": "^1.11.0",
"devextreme": "^21.2.6",
"devextreme-react": "^21.2.6",
"dompurify": "^2.3.6",
"mui-datatables": "^4.1.2",
"notistack": "^2.0.3",
"object-hash": "^3.0.0",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.0.4",
"react-device-detect": "^2.1.2",
"react-dom": "^17.0.2",
"react-easy-edit": "^1.15.0",
"react-epic-spinners": "^0.5.0",
"react-ga": "^3.3.1",
"react-google-login": "^5.2.2",
"react-hook-form": "^7.28.1",
"react-json-view": "^1.21.3",
"react-player": "^2.10.0",
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.2",
"react-select": "^5.2.2",
"react-slick": "^0.29.0",
"react-spinner-material": "^1.4.0",
"react-timer-hook": "^3.0.5",
"react-youtube": "^7.14.0",
"slick-carousel": "^1.8.1",
"underscore": "^1.13.2"
},
"devDependencies": {
"@vitejs/plugin-react": "^1.2.0",
"eslint": "^8.11.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.6.0",
"vite": "^2.8.6"
}
}