forked from aralroca/next-translate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 1.95 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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@portfolioslab/next-translate",
"version": "2.0.0-alpha.2",
"description": "Tiny and powerful i18n tools (Next plugin + API) to translate your Next.js pages.",
"license": "MIT",
"keywords": [
"react",
"preact",
"i18n",
"nextjs",
"next.js",
"next",
"plugin",
"translate",
"translation",
"internationalization",
"locale",
"locales",
"globalization"
],
"repository": {
"type": "git",
"url": "https://github.com/xcrzx/next-translate.git"
},
"author": {
"name": "Dmitry Shevchenko"
},
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write .",
"type-check": "tsc --pretty --noEmit",
"test": "jest",
"release": "rm -rf dist && yarn build && cp package.json dist && yarn publish dist"
},
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.11",
"@babel/preset-typescript": "7.12.7",
"@testing-library/react": "11.2.2",
"@types/node": "14.14.14",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@types/webpack": "4.41.25",
"babel-jest": "26.6.3",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"babel-preset-minify": "0.5.1",
"husky": "4.3.6",
"jest": "26.6.3",
"lint-staged": "^10.5.3",
"next": "10.0.3",
"prettier": "2.2.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"typescript": "4.1.3"
},
"peerDependencies": {
"next": ">= 10.0.0",
"react": ">= 16.8.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn run type-check && yarn run test && lint-staged"
}
},
"prettier": {
"trailingComma": "all",
"semi": false
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn format"
]
},
"jest": {
"roots": [
"<rootDir>/__tests__",
"<rootDir>/src"
],
"transform": {
"^.+\\.(j|t)sx?$": "babel-jest"
}
}
}