-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.76 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
54
55
56
57
58
59
{
"name": "postit-social",
"version": "1.0.0",
"description": "Postit is a social media app that lets users create and share posts containing text, images, video, and/or audio. Users can reply to posts and delete their own post-it replies. The app implements soft delete on all resources and sorts posts (post-its) by newest first.",
"main": "server.js",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"start": "node build",
"dev": "nodemon src/server.ts",
"prod": "NODE_ENV=production nodemon src/server.ts",
"start:prod": "ts-node-dev --respawn --transpile-only src/server.ts"
},
"keywords": [],
"author": "Gospel Nweke A.",
"license": "ISC",
"dependencies": {
"": "",
"@types/crypto-js": "^4.1.1",
"@types/morgan": "^1.9.4",
"@types/nodemailer": "^6.4.7",
"@types/validator": "^13.7.13",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"googleapis": "^126.0.0",
"html-to-text": "^9.0.5",
"joi": "^17.8.3",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.1",
"morgan": "^1.10.0",
"nodemailer": "^6.9.1",
"pug": "^3.0.2",
"slugify": "^1.6.5",
"validator": "^13.9.0",
"xss": "^1.0.14",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/html-to-text": "^9.0.1",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^9.0.1",
"@types/mongoose": "^5.11.97",
"@types/node": "^18.14.6",
"@types/pug": "^2.0.6",
"cross-env": "^7.0.3",
"nodemon": "^2.0.21",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=16.0.0"
}
}