-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.22 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "unifier-server",
"version": "0.1.0",
"author": "@unifierapp",
"license": "ISC",
"description": "Unifier server infrastructure",
"main": "index.js",
"dependencies": {
"axios": "^1.3.4",
"cloudinary": "^1.35.0",
"connect-mongo": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-session": "^1.17.3",
"instagram-private-api": "^1.45.3",
"linkedin-private-api": "^1.1.2",
"linkedin-private-api-expanded": "^1.1.23",
"mongoose": "^7.0.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.22",
"passport": "^0.6.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^8.0.0",
"passport-twitter": "^1.0.4",
"re2": "^1.18.0",
"socks-proxy-agent": "^8.0.1",
"ts-custom-error": "^3.3.1",
"ts-node": "^10.9.1",
"twitter-api-sdk": "^1.2.1",
"twitter-lite": "^1.1.0",
"type-is": "^1.6.18",
"url-regex-safe": "^3.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/luxon": "^3.3.0",
"@types/mime-types": "^2.1.1",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/nodemailer": "^6.4.7",
"@types/passport-facebook": "^2.1.11",
"@types/passport-google-oauth20": "^2.0.11",
"@types/passport-local": "^1.0.35",
"@types/passport-twitter": "^1.0.37",
"@types/type-is": "^1.6.3",
"mime-types": "^2.1.35",
"nodemailer": "^6.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
},
"scripts": {
"build": "tsc --version && npx tsc",
"start": "TS_NODE_BASEURL=\"./dist\" node -r tsconfig-paths/register dist/index.js",
"dev": "nodemon index.ts",
"database:linux": "mkdir -p _database && sudo mongod --port 8888 --dbpath ./_database",
"database": "(if not exist _database mkdir _database) && mongod --port 8888 --dbpath ./_database"
},
"overrides": {
"instagram-private-api": {
"ts-custom-error": "latest"
}
}
}