-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "next-i18n-router",
"version": "5.5.1",
"description": "Next.js App Router internationalized routing and locale detection.",
"repository": "https://github.com/i18nexus/next-i18n-router",
"keywords": [
"next.js",
"nextjs",
"react-intl",
"i18n",
"locale",
"detection",
"internationalization",
"internationalisation",
"localization",
"localisation",
"app router"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc"
},
"prepublish": "tsc",
"author": "i18nexus",
"license": "MIT",
"devDependencies": {
"@types/eslint": "^8.56.2",
"@types/jest": "^29.5.2",
"@types/negotiator": "^0.6.1",
"@types/node": "^20.11.14",
"@types/react": "^18.2.49",
"@types/react-dom": "^18.2.18",
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^14.1.0",
"eslint-plugin-jest": "^27.6.3",
"jest": "^29.5.0",
"next": "^14.2.2",
"react": "^18.2.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@formatjs/intl-localematcher": "^0.5.2",
"negotiator": "^0.6.3"
}
}