-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.64 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
60
{
"name": "poet-app",
"version": "1.0.3",
"description": "A simple web application that allows users to post, edit, and delete poems. The application is built using Node.js and MongoDB.",
"main": "server.js",
"scripts": {
"test": "jest",
"start": "node server.js",
"format": "prettier --write {**/,}*.js",
"lint": "prettier --check {**/,}*.js",
"dev": "nodemon server.js",
"build": "ncc build ./server.js -o dist",
"start:build": "node dist/index.js",
"dev:build": "nodemon dist/index.js",
"serve:build": "echo \"P1: Building the app.\" && npm run build && echo \n\"P2: Serving your app.\" && npm run dev"
},
"keywords": [
"poet-app",
"poem-app",
"poem"
],
"author": "Ramprasath M K",
"license": "ISC",
"dependencies": {
"@vercel/ncc": "^0.38.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.3",
"compression": "^1.7.5",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"eslint": "^9.15.0",
"express": "^4.21.1",
"express-session": "^1.18.1",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.11.0",
"nodemailer": "^6.9.16",
"passport": "^0.7.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"jest": "^29.7.0",
"mongoose": "^8.8.4",
"nodemon": "^3.1.7",
"prettier": "^3.4.2",
"supertest": "^7.0.0",
"typescript": "^5.6.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ramprasathmk/poet-app.git"
},
"directories": {
"test": "tests"
},
"bugs": {
"url": "https://github.com/ramprasathmk/poet-app/issues"
},
"homepage": "https://github.com/ramprasathmk/poet-app#readme"
}