-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.93 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
{
"name": "uberworterbuch",
"description": "Das urbanste deutsche Wörterbuch",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"filename-from-word": "tsx ./share/scripts/filename-from-word.ts",
"file-from-word": "tsx ./share/scripts/file-from-word.ts",
"new-word-notification": "tsx ./share/scripts/new-word-notification.ts",
"weekly-new-words-notification": "tsx ./share/scripts/weekly-new-words-notification.ts"
},
"simple-git-hooks": {
"pre-commit": "npm run build ; npm run lint"
},
"dependencies": {
"@mdx-js/loader": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"@next/mdx": "^14.0.4",
"@types/mdx": "^2.0.10",
"dayjs": "^1.11.10",
"firebase-admin": "^12.0.0",
"lodash.debounce": "^4.0.8",
"next": "14.0.4",
"next-mdx-remote": "^4.4.1",
"node-telegram-bot-api": "^0.64.0",
"openai": "^4.28.4",
"react": "^18",
"react-dom": "^18",
"react-infinite-scroller": "^1.2.6",
"react-use": "^17.5.0",
"rss": "^1.2.2",
"snoowrap": "^1.23.0",
"twitter-api-v2": "^1.16.0"
},
"devDependencies": {
"@types/git-user-name": "^2.0.3",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^20",
"@types/node-telegram-bot-api": "^0.64.2",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-infinite-scroller": "^1.2.5",
"@types/rss": "^0.0.32",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"eslint-plugin-import": "^2.29.1",
"git-user-name": "^2.0.0",
"postcss": "^8",
"simple-git-hooks": "^2.9.0",
"tailwindcss": "^3.3.0",
"tsx": "^4.7.0",
"typescript": "^5"
}
}