-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
128 lines (127 loc) · 2.88 KB
/
package.json
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "dsc-portal",
"version": "0.1.0",
"description": "An efficient and scalable software solution to manage everything @dsckiet.",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^13.1.9",
"antd": "4.15.2",
"antd-img-crop": "^3.14.2",
"axios": "^0.21.4",
"history": "^5.0.0",
"jwt-decode": "^3.1.2",
"less": "^4.1.1",
"moment": "^2.29.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-highlight-words": "^0.17.0",
"react-icons": "^4.2.0",
"react-markdown": "^7.1.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"remark-gfm": "^3.0.1",
"styled-components": "^5.3.0"
},
"scripts": {
"start": "react-scripts start",
"start-dev":"react-scripts --openssl-legacy-provider start",
"build": "react-scripts build",
"deploy": "react-scripts build && cp _redirects ./build && netlify deploy --prod",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "prettier \"**/*.{js, jsx, json, md, html, css, yml}\" --write"
},
"repository": {
"type": "git",
"url": "https://github.com/dsckiet/react-portal.git"
},
"author": {
"name": "Developer Student Clubs KIET",
"email": "[email protected]",
"url": "https://dsckiet.com"
},
"contributors": [
{
"name": "Aakash Goel",
"email": "[email protected]",
"url": "https://goelaakash79.github.io"
},
{
"name": "Rohan Mehta",
"email": "[email protected]",
"url": "https://rhnmht30.dev"
},
{
"name": "Mayank Shakya",
"email": "[email protected]",
"url": "https://github.com/mayanksh99"
},
{
"name": "Aniket Padmaansh",
"email": "[email protected]",
"url": "https://github.com/padmansh"
},
{
"name": "Akhil Raj Srivastava",
"email": "[email protected]",
"url": "https://github.com/geekCoderRaj"
},
{
"name": "Ananya Punia",
"email": "[email protected]",
"url": "https://github.com/ananyapunia28"
},
{
"name": "Harshit ai",
"email": "[email protected]",
"url": "https://github.com/Harshitr10"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dsckiet/react-portal/issues"
},
"homepage": "https://portal.dsckiet.com",
"keywords": [
"portal",
"nodejs",
"redis",
"kue",
"management-system",
"mongodb",
"sentry"
],
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"husky": "4.3.0",
"lint-staged": "10.4.2",
"prettier": "^2.3.2"
},
"lint-staged": {
"*.{js, jsx, json, md, html, css, yml}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}