-
-
Notifications
You must be signed in to change notification settings - Fork 764
/
Copy pathpackage.json
35 lines (35 loc) · 1.11 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
{
"name": "next-i18next-example-simple",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start -p ${PORT:=3000}",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"clean": "rimraf .next",
"nuke:install": "rimraf ./node_modules ./package-lock.json",
"toc": "i18next-resources-for-ts toc -i ./public/locales/en -o ./@types/resources.ts",
"merge": "i18next-resources-for-ts merge -i ./public/locales/en -o ./@types/resources.json",
"interface": "i18next-resources-for-ts interface -i ./public/locales/en -o ./@types/resources.d.ts"
},
"dependencies": {
"i18next": "24.0.0",
"next": "^14.2.7",
"next-i18next": "^15.4.0",
"react": "^18.3.1",
"react-i18next": "^15.1.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^20.14.6",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"eslint-config-next": "^14.2.7",
"i18next-resources-for-ts": "1.5.0",
"rimraf": "^6.0.1",
"picocolors": "^1.0.1",
"typescript": "^5.5.4"
}
}