forked from hozana/next-translate-routes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.75 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
{
"name": "next-translate-routes",
"version": "1.7.1",
"description": "Flexible and translated routes for Next.js without custom server",
"main": "index.js",
"repository": "https://github.com/hozana/next-translate-routes",
"author": "cvolant",
"license": "MIT",
"keywords": [
"next",
"next.js",
"routes",
"router",
"routing",
"react",
"intl",
"i18n",
"dynamic"
],
"scripts": {
"build": "`rm ./*.d.ts ./*.js.map ./*.js` npx tsc",
"lint": "npx eslint --ignore-path .gitignore .",
"test": "jest",
"prerelease": "yon lint && yon build",
"release": "npx np",
"prestart": "yon --cwd ./example install && yon build && yon --cwd ./example build",
"start": "yon --cwd ./example start"
},
"dependencies": {
"path-to-regexp": "^6.2.0",
"querystring": "^0.2.1",
"yamljs": "^0.3.0"
},
"files": [
"*.js",
"*.d.ts",
"*.js.map",
"src/*"
],
"devDependencies": {
"@next/eslint-plugin-next": "^12.0.7",
"@testing-library/react": "^12.1.2",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.11",
"@types/yamljs": "^0.2.31",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"babel-jest": "^27.4.5",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.4.5",
"next": "^12.0.4",
"np": "^7.5.0",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4",
"webpack": "^5.65.0",
"yarn-or-npm": "^3.0.1"
},
"peerDependencies": {
"next": ">11.0.0",
"react": ">=16.8.0"
}
}