-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.19 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
{
"name": "server",
"version": "1.0.0",
"description": "Backend of Trackr",
"main": "server.js",
"author": "Francis Hodianto",
"license": "MIT",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"dependencies": {
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"concurrently": "^5.2.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-query-parser": "^1.0.2",
"express-rate-limit": "^5.1.3",
"hashmap": "^2.4.0",
"helmet": "^3.23.3",
"is-empty": "^1.2.0",
"js-priority-queue": "^0.1.5",
"jsonwebtoken": "^8.5.1",
"moment": "^2.27.0",
"mongoose": "^5.9.16",
"node-schedule": "^1.3.2",
"node-scheduler": "^1.0.0",
"nodemailer": "^6.4.8",
"optimized-quicksort": "^1.1.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"priorityqueue": "^1.0.0",
"url": "^0.11.0",
"validator": "^13.0.0"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}