-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
{
"name": "gmail-to-outlook-proxy",
"version": "0.1.0",
"private": true,
"scripts": {
"lint": "next lint",
"app:dev": "next dev",
"app:build": "next build",
"app:start": "next start",
"smtp:build": "tsc -p tsconfig.smtp.json",
"smtp:watch": "tsc -p tsconfig.smtp.json -w",
"smtp:dev": "nodemon build/smtp",
"smtp:test": "node build/smtp/test.js",
"build": "npm run app:build && npm run smtp:build",
"start": "pm2 start pm2.json",
"reload": "pm2 reload pm2.json"
},
"dependencies": {
"@microsoft/microsoft-graph-client": "^3.0.7",
"@next/third-parties": "^15.0.1",
"iron-session": "^8.0.3",
"localenv": "^0.2.2",
"lodash": "^4.17.21",
"lucide-react": "^0.453.0",
"next": "^15.0.0",
"node-cache": "^5.1.2",
"nodemailer": "^6.9.15",
"react": "^18.0.0",
"request-promise-native": "^1.0.9",
"smtp-server": "^3.13.6",
"source-map-support": "^0.5.21",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"throat": "^6.0.2"
},
"devDependencies": {
"@types/lodash": "^4.17.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/request-promise-native": "^1.0.21",
"@types/smtp-server": "^3.5.10",
"eslint": "^8",
"eslint-config-next": "15.0.1",
"nodemon": "^3.1.7",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}