-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
73 lines (73 loc) · 1.99 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@moxy/next-intl",
"version": "3.1.2",
"description": "Library to integrate react-intl with Next.js",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"lib",
"es"
],
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"test": "jest",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src -d lib --delete-dir-on-start",
"build:es": "cross-env BABEL_ENV=es babel src -d es --delete-dir-on-start",
"build": "npm run build:commonjs && npm run build:es",
"prerelease": "npm t && npm run lint && npm run build",
"release": "standard-version",
"postrelease": "git push --follow-tags origin HEAD && npm publish"
},
"keywords": [
"react",
"next",
"nextjs",
"locale",
"localization",
"intl",
"l10n",
"i18n",
"isomorphic",
"language"
],
"author": "André Cruz <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:moxystudio/next-intl.git"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.1"
},
"peerDependencies": {
"next": ">=10 <13",
"react": ">=16.8.0 <19",
"react-intl": ">=4.1.0 <7"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@moxy/babel-preset": "^3.2.4",
"@moxy/eslint-config-babel": "^13.0.0",
"@moxy/eslint-config-base": "^13.0.0",
"@moxy/eslint-config-jest": "^13.0.0",
"@moxy/eslint-config-react": "^13.0.0",
"@moxy/jest-config-base": "^6.1.0",
"@moxy/jest-config-testing-library": "^6.1.0",
"@moxy/jest-config-web": "^6.1.0",
"@testing-library/react": "^13.4.0",
"cross-env": "^7.0.2",
"delay": "^5.0.0",
"eslint": "^7.22.0",
"husky": "^4.0.10",
"jest": "^26.0.0",
"lint-staged": "^11.0.0",
"next": "^12.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.1.2",
"standard-version": "^9.1.1"
}
}