-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "crms-server-se-uom",
"version": "1.0.0",
"description": "Customer Relationship Management System with NodeJS, Express, EJS and SocketIO for the Semester 4 Software Engineering Project",
"main": "server.js",
"scripts": {
"start": "node server.js",
"start-dev": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "dummyurl"
},
"homepage": "dummyurl",
"dependencies": {
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"connect-flash": "^0.1.1",
"connect-mongodb-session": "^3.1.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"ejs": "^3.1.7",
"express": "^4.17.3",
"express-session": "^1.17.2",
"joi": "^17.6.0",
"mongoose": "^6.2.10",
"morgan": "^1.10.0",
"passport": "^0.5.2",
"passport-local": "^1.0.0",
"socket.io": "^4.4.1"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"eslint": "^8.13.0",
"nodemon": "^2.0.15"
}
}