-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
87 lines (87 loc) · 2.42 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
{
"name": "sub.rehab",
"version": "0.1.0",
"description": "A website that lists subreddit alternatives on different platforms",
"keywords": [
"directory",
"links",
"fediverse",
"discord",
"lemmy",
"kbin",
"reddit"
],
"repository": {
"type": "git",
"url": "https://github.com/GeorgeSG/sub.rehab"
},
"engines": {
"node": ">=18 <19"
},
"enginesStrict": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"cli": "ts-node --esm ./bin/cli/cli.mts",
"fbs": "yarn cli firebase",
"prepare": "husky install",
"stats:crawl": "yarn stats:crawl:discord && yarn stats:crawl:lemmy",
"stats:crawl:lemmy": "ts-node --esm ./crawlers/lemmy/crawl.mts",
"stats:crawl:discord": "ts-node --esm ./crawlers/discord/crawl.mts",
"stats:fetch": "yarn stats:fetch:discord && yarn stats:fetch:lemmy",
"stats:fetch:lemmy": "ts-node --esm ./crawlers/lemmy/fetch.mts",
"stats:fetch:discord": "ts-node --esm ./crawlers/discord/fetch.mts",
"deploy": "NEXT_PUBLIC_FIRESTORE_SUFFIX='' yarn stats:fetch && yarn build && firebase deploy"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.370.0",
"@aws-sdk/lib-storage": "^3.370.0",
"@emotion/react": "11.11.1",
"@emotion/server": "11.11.0",
"@mantine/core": "6.0.13",
"@mantine/form": "^6.0.13",
"@mantine/hooks": "6.0.13",
"@mantine/modals": "^6.0.13",
"@mantine/next": "6.0.13",
"@mantine/notifications": "^6.0.13",
"axios": "^1.4.0",
"firebase": "^9.22.2",
"next": "13.4.5",
"ramda": "^0.29.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.9.0",
"typewriter-effect": "2.20.1"
},
"devDependencies": {
"@inquirer/prompts": "^2.1.1",
"@types/axios": "^0.14.0",
"@types/inquirer": "^9.0.3",
"@types/node": "^20.3.1",
"@types/prettier": "^2.7.3",
"@types/ramda": "^0.29.2",
"@types/react": "18.2.12",
"@types/react-dom": "18.2.5",
"@types/yargs": "^17.0.24",
"chalk": "^5.2.0",
"dotenv": "^16.3.1",
"eslint": "8.42.0",
"eslint-config-next": "13.4.5",
"husky": "^8.0.0",
"inquirer": "^9.2.7",
"node-fetch": "^3.3.1",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "5.1.3",
"yargs": "^17.7.2",
"zod": "^3.21.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn cli validate"
}
}
}