-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·55 lines (55 loc) · 1.63 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
{
"name": "srmwebportal",
"homepage": "https://alumnisrm.com/",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"aos": "^2.3.4",
"axios": "^0.24.0",
"bcrypt": "^5.0.1",
"bcrypt-nodejs": "^0.0.3",
"config": "3.3.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.3",
"multer": "^1.4.4",
"path": "^0.12.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.0",
"web-vitals": "^2.1.2"
},
"scripts": {
"start": "node server.js",
"react": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"sass": "sass -w src/pages/Groups/groups.scss:src/pages/Groups/groups.css src/pages/Chat/chat.scss:src/pages/Chat/chat.css src/pages/Resources/resources.scss:src/pages/Resources/resources.css src/components/post/post.scss:src/components/post/post.css src/pages/profile/profile.scss:src/pages/profile/profile.css src/components/ProfilePopup/profile-popup.scss:src/components/ProfilePopup/profile-popup.css",
"server": "nodemon server.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}