-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.32 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "study-mize",
"version": "1.0.0",
"description": "Study plan app for students and young professionals.",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node-dev --respawn --transpile-only --watch .env src/server.ts",
"stripe": "stripe listen --forward-to http://192.168.10.132:3759/api/v1/payment/stripe/webhook",
"lint": "eslint src --ignore-path .eslintignore --ext .ts",
"prettier": "prettier --ignore-path .gitignore --write \"./src/**/*.+(js|ts|json)\"",
"test": "echo \"Error: no test specified\" && exit 1",
"new-module": "node ./src/app/modules/.builder.js"
},
"keywords": [
"study",
"plan",
"app",
"students",
"young",
"professionals",
"time",
"management",
"organization",
"productivity",
"convenience"
],
"author": {
"name": "Shaishab Chandra Shil",
"github": "https://github.com/shaishabcoding"
},
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/kill-port": "^2.0.3",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/nodemailer": "^6.4.16",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"inquirer": "^7.3.3",
"kill-port": "^2.0.1",
"prettier": "^3.4.2",
"prettier-eslint": "^16.3.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.3"
},
"dependencies": {
"apple-signin-auth": "^1.7.8",
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"colors": "^1.4.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.9.2",
"mongoose-autopopulate": "^1.1.0",
"morgan": "^1.10.0",
"ms": "^2.1.3",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.16",
"openai": "^4.89.0",
"sharp": "^0.33.5",
"socket.io": "^4.7.5",
"stripe": "^17.2.1",
"uuid": "^11.1.0",
"winston": "^3.13.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^3.23.8"
}
}