-
Notifications
You must be signed in to change notification settings - Fork 145
/
package.json
53 lines (53 loc) · 1.35 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
{
"name": "instaclone",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "12.14.1",
"npm": "6.14.4"
},
"scripts": {
"client": "cd client && npm run start",
"server": "nodemon index.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"start": "node index.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sandermoen/instaclone.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Sandermoen/instaclone/issues"
},
"homepage": "https://github.com/Sandermoen/instaclone#readme",
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cloudinary": "^1.21.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.1.1",
"handlebars": "^4.7.6",
"helmet": "^3.21.2",
"jwt-simple": "^0.5.6",
"linkifyjs": "^2.1.9",
"mongoose": "^5.12.2",
"multer": "^1.4.2",
"nodemailer": "^6.4.6",
"nodemon": "^2.0.4",
"socket.io": "^2.4.1",
"validator": "^12.2.0"
},
"devDependencies": {
"concurrently": "^5.1.0",
"morgan": "^1.9.1"
}
}