-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1022 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
39
40
{
"name": "next-ts-tailwindcss-i18n",
"author": "BerkeKaragoz",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --watch",
"test:once": "jest --verbose",
"lint": "next lint"
},
"dependencies": {
"nanoid": "^3.1.30",
"next": "^12.1.6",
"next-i18next": "^11.0.0",
"next-themes": "^0.2.0",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@types/react": "17.0.34",
"autoprefixer": "^10.4.0",
"babel-jest": "^27.3.1",
"eslint": "7.32.0",
"eslint-config-next": "12.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"postcss": "^8.4.14",
"react-test-renderer": "^17.0.2",
"tailwind-rtl": "^1.0.0",
"tailwindcss": "^3.1.2",
"tailwindcss-rtl": "^0.7.3",
"tailwindcss-typography": "^3.1.0",
"typescript": "^4.7.3"
}
}