-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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": "meme-site",
"version": "1.0.0",
"description": "A simple meme wesbite created using the MERN stacl",
"main": "src/index.ts",
"engines": {
"node": "16.0.0"
},
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"build": "tsc -p src",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ratul-devR/meme-website.git"
},
"keywords": [
"MEME",
"website",
"MERN",
"ratul-devr",
"React",
"Node",
"Express"
],
"author": "Developer Ratul",
"license": "ISC",
"bugs": {
"url": "https://github.com/ratul-devR/meme-website/issues"
},
"homepage": "https://github.com/ratul-devR/meme-website#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.5",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.7",
"@types/node": "*",
"nodemon": "^2.0.12",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"bcrypt": "^5.0.1",
"cloudinary": "^1.26.3",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.4",
"multer": "^1.4.3"
}
}