-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.25 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.25 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
47
{
"name": "nodejs-creating-restful-apis",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build",
"build": "babel server/src -d server/dist",
"start": "babel-node server/src/server.js",
"dev": "concurrently \"npm run start\" \"cd client && npm run start\"",
"restart": "rimraf dist && npm run start",
"test": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"cloudinary": "^1.13.2",
"concurrently": "^7.5.0",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.0",
"mongoose": "^5.13.15",
"multer": "^1.4.1",
"multer-storage-cloudinary": "^2.2.1",
"nodemailer": "^6.6.1",
"passport": "^0.6.0",
"passport-facebook-token": "^3.3.0",
"randomstring": "^1.1.5",
"validator": "^13.7.0"
},
"engines": {
"node": "12.19.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"jest": "^26.6.3",
"superagent": "^6.1.0",
"supertest": "^6.1.3",
"ts-node": "^9.1.1"
}
}