-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.26 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.26 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "build/server.js",
"type": "commonjs",
"engines": {
"node": "18.x"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --respawn --transpile-only server.ts",
"start": "node build/server.js",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false",
"build": "tsc"
},
"author": "__nunar.ei",
"license": "ISC",
"dependencies": {
"@types/bcryptjs": "^2.4.3",
"@types/cookie-parser": "^1.4.4",
"@types/cors": "^2.8.14",
"@types/ejs": "^3.1.2",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.5.9",
"@types/nodemailer": "^6.4.9",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.40.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"http": "^0.0.1-security",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.5.0",
"nodemailer": "^6.9.4",
"nodemon": "^3.0.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}