-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpackage.json
95 lines (95 loc) · 2.77 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
{
"name": "project",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"aos": "^2.3.4",
"axios": ">=0.21.1",
"bootstrap-4-react": "0.0.59",
"bootstrap4": "0.0.1-security",
"concurrently": "^6.3.0",
"express-async-handler": "^1.1.4",
"hover.css": "^2.3.2",
"moment-timezone": "^0.5.33",
"nodemailer": "^6.4.11",
"react": "^16.13.1",
"react-countup": "^4.3.3",
"react-dom": "^16.13.1",
"react-google-login": "^5.1.21",
"react-icons": "^4.2.0",
"react-live-clock": "^5.1.0",
"react-moment": "^1.1.1",
"react-multiselect-checkboxes": "^0.1.1",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"react-scroll": "^1.8.2",
"react-simple-chatbot": "^0.6.1",
"react-star-rating-component": "^1.4.1",
"react-toastify": "^7.0.4",
"react-visibility-sensor": "^5.1.1",
"read-more-react": "^1.0.10",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"styled-components": "^5.2.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"dep0": "yarn add concurrently",
"server-dependencies": "cd backend && yarn install --ignore-engines",
"client-dependencies": "yarn install --ignore-engines",
"dep1": "concurrently \"yarn server-dependencies\" \"yarn client-dependencies\"",
"client": "yarn start",
"server": "cd backend && yarn start",
"dev": "concurrently \"yarn server\" \"yarn client\"",
"check-formatting": "prettier --check '**/*.{js,jsx,css,html}'",
"check-linting": "eslint '**/*.{js,jsx}'"
},
"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"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx}": [
"eslint --fix"
]
},
"description": "This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).",
"main": "index.js",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.22.0",
"husky": "4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
},
"author": "Naman Lakhwani (Namanl2001)",
"license": "ISC",
"proxy": "http://localhost:5000/"
}