-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.29 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.29 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
48
49
50
51
{
"name": "mindx-images-api",
"version": "1.0.0",
"description": "",
"scripts": {
"lint": "tslint --project tsconfig.json",
"build": "tsc -p ./",
"start": "node dist/server",
"dev": "nodemon server.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.4.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cloudinary": "^1.23.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase": "^9.4.1",
"firebase-admin": "^10.0.0",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.14",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemailer": "^6.4.16",
"socket.io": "^3.0.4",
"streamifier": "^0.1.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.12",
"@types/jsonwebtoken": "^8.5.2",
"@types/morgan": "^1.9.2",
"@types/multer": "^1.4.6",
"@types/node": "^14.14.14",
"@types/streamifier": "^0.1.0",
"@types/uuid": "^8.3.1",
"nodemon": "^2.0.7",
"prettier": "^2.3.1",
"ts-node": "^10.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.3.4"
}
}