-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
115 lines (115 loc) · 3.45 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "tgdr",
"description": "Telegram directory to discover channels, bots and groups.",
"version": "1.3.2",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/thedevs-network/tgdr.git"
},
"homepage": "https://github.com/thedevs-network/tgdr#readme",
"author": "Pouria Ezzati <[email protected]>",
"scripts": {
"dev": "nodemon server/server.ts",
"build": "next build && tsc --project tsconfig.server.json",
"start": "NODE_ENV=production node production-server/server.js",
"lint": "tslint -p tsconfig.json",
"lint:fix": "tslint -p tsconfig.json --fix"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"@rebass/grid": "^6.0.0-7",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"cheerio": "^1.0.0-rc.2",
"cloudinary": "^1.13.2",
"cloudinary-react": "^1.1.0",
"cookie-parser": "^1.4.3",
"date-fns": "^1.30.1",
"decay": "^1.0.12",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-async-handler": "^1.1.4",
"express-validator": "^5.3.0",
"helmet": "^3.15.0",
"immer": "^1.9.3",
"js-cookie": "^2.2.0",
"jsonwebtoken": "^8.4.0",
"jwt-decode": "^2.2.0",
"lodash.debounce": "^4.0.8",
"mongoose": "^5.4.0",
"morgan": "^1.9.1",
"ms": "^2.1.1",
"next": "^7.0.2",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-telegram-official": "git+https://github.com/poeti8/passport-telegram-official.git",
"query-string": "^6.2.0",
"ramda": "^0.25.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-dropzone": "^4.3.0",
"react-ga": "^2.5.6",
"react-redux": "^6.0.0",
"react-telegram-login": "^1.0.3",
"redis": "^2.8.0",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.7",
"redux-form": "^8.0.4",
"redux-thunk": "^2.3.0",
"signale": "^1.3.0",
"styled-components": "^4.1.3",
"styled-media-query": "^2.1.1",
"styled-tools": "^1.6.0",
"telegraf": "^3.25.5",
"typesafe-actions": "^2.0.4",
"typescript": "^3.2.2"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/cheerio": "^0.22.10",
"@types/cookie-parser": "^1.4.1",
"@types/date-fns": "^2.6.0",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.16.0",
"@types/helmet": "0.0.38",
"@types/js-cookie": "^2.2.0",
"@types/jsonwebtoken": "^7.2.8",
"@types/jwt-decode": "^2.2.1",
"@types/lodash.debounce": "^4.0.4",
"@types/mongodb": "^3.1.17",
"@types/mongoose": "^5.3.5",
"@types/morgan": "^1.7.35",
"@types/next": "^7.0.5",
"@types/nprogress": "0.0.29",
"@types/passport": "^0.4.7",
"@types/passport-jwt": "^3.0.1",
"@types/query-string": "^6.1.1",
"@types/ramda": "^0.25.45",
"@types/react": "^16.7.18",
"@types/react-dropzone": "^4.2.2",
"@types/react-redux": "^6.0.11",
"@types/redis": "^2.8.10",
"@types/redux-form": "^7.4.13",
"@types/signale": "^1.2.0",
"@zeit/next-css": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"babel-plugin-inline-react-svg": "^0.5.4",
"babel-plugin-styled-components": "^1.10.0",
"husky": "^1.2.1",
"next-images": "^1.0.3",
"nodemon": "^1.18.9",
"prettier": "^1.15.3",
"ts-node": "^4.1.0",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^3.6.0"
}
}