-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 894 Bytes
/
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
{
"name": "link-shortener",
"version": "1.1.0",
"author": {
"name": "Matheus Calegaro",
"email": "[email protected]",
"url": "https://[email protected]"
},
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"i18next": "^22.4.9",
"i18next-browser-languagedetector": "^7.0.1",
"ioredis": "^5.3.0",
"next": "^13.1.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.1.4",
"react-tooltip": "^5.7.2"
},
"devDependencies": {
"@types/ioredis": "^5.0.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"autoprefixer": "^10.3.5",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"postcss": "^8.3.7",
"tailwindcss": "^3.2.4",
"typescript": "^4.4.3"
}
}