-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 883 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 883 Bytes
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
{
"name": "anime-manager-backend",
"version": "1.0.0",
"description": "REST API for Anime Manager",
"main": "server.js",
"scripts": {
"start": "set NODE_ENV=production && node server",
"dev": "set NODE_ENV=development && nodemon server"
},
"author": "Shayan Chatterjee",
"license": "MIT",
"dependencies": {
"axios": "0.20.0",
"bcryptjs": "2.4.3",
"cloudinary": "1.23.0",
"colors": "1.4.0",
"cors": "2.8.5",
"dotenv": "8.2.0",
"express": "4.17.1",
"express-mongo-sanitize": "2.0.0",
"googleapis": "66.0.0",
"handlebars": "4.7.6",
"helmet": "4.1.1",
"hpp": "0.2.3",
"jsonwebtoken": "8.5.1",
"mongoose": "5.10.6",
"morgan": "1.10.0",
"node-sass": "7.0.3",
"nodemailer": "6.4.17",
"randomstring": "1.1.5",
"xss-clean": "0.1.1"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}