-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
39 lines (39 loc) · 1.54 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
{
"name": "next-app-dir-i18next-example-ts",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "next build",
"dev": "next dev",
"dev-turbo": "next dev --turbo",
"lint": "next lint",
"start": "next start",
"migrateToLocize": "locize migrate --project-id=01b2e5e8-6243-47d1-b36f-963dbb8bcae3 --api-key=c9805cd1-fd50-4d98-967a-383b39066de8 --path=./app/i18n/locales",
"downloadLocales": "locize download --project-id=01b2e5e8-6243-47d1-b36f-963dbb8bcae3 --ver=latest --clean=true --path=./app/i18n/locales && npm run i18next-resources-for-ts",
"syncLocales": "locize sync --project-id=01b2e5e8-6243-47d1-b36f-963dbb8bcae3 --api-key=bd8cb856-d6b3-4c82-a456-862c729a1674 --ver=latest --path=./app/i18n/locales --dry=true",
"i18next-resources-for-ts": "i18next-resources-for-ts interface -i ./app/i18n/locales/en -o ./@types/resources.d.ts"
},
"dependencies": {
"accept-language": "3.0.20",
"i18next": "23.16.4",
"i18next-browser-languagedetector": "8.0.0",
"i18next-resources-to-backend": "1.2.1",
"next": "15.0.2",
"react": "18.3.1",
"react-cookie": "7.2.2",
"react-dom": "18.3.1",
"react-i18next": "15.1.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.25.9",
"@types/node": "22.8.6",
"@types/react": "18.3.12",
"@typescript-eslint/eslint-plugin": "8.12.2",
"@typescript-eslint/parser": "8.12.2",
"eslint": "8.57.1",
"eslint-config-next": "15.0.2",
"i18next-resources-for-ts": "1.5.0",
"locize-cli": "8.1.1",
"typescript": "5.6.3"
}
}