forked from i18next/next-i18next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 945 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
{
"name": "next-i18next-example-ssg",
"version": "13.0.0",
"license": "MIT",
"scripts": {
"404": "cp out/404/index.html out/404.html",
"dev": "next dev",
"build": "next build && next export",
"postbuild": "npm run 404",
"server": "next start",
"start": "npm run dev",
"lint": "next lint",
"test": "npm run lint",
"serve": "http-server out -p 8080",
"downloadLocales": "locize download --project-id=0842ada9-1d1d-4d48-ab27-08f6a132f558 --ver=latest --clean=true --path=./public/locales",
"clean": "rimraf .next out"
},
"dependencies": {
"i18next": "23.4.6",
"next": "13.4.12",
"next-i18next": "^14.0.2",
"next-language-detector": "^1.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.2.1"
},
"devDependencies": {
"eslint-config-next": "13.4.12",
"http-server": "14.1.1",
"locize-cli": "7.14.8",
"rimraf": "^5.0.1"
}
}