-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
80 lines (80 loc) · 2.09 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
{
"name": "next-translate-routes",
"version": "1.11.0-5",
"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:clear": "yon rimraf 'plugin' 'react' 'shared' './*.d.ts' './*.js.map' './*.js'",
"build": "yon build:clear && yon tsc",
"format": "yon prettier -c --write .",
"lint": "yon eslint --ignore-path .gitignore .",
"test": "jest",
"prerelease": "yon lint && yon build",
"release": "npx release-it",
"start": "yon install && yon build && cd ./example && yon install && yon build && yon start"
},
"dependencies": {
"path-to-regexp": "^6.2.0",
"querystring": "^0.2.1",
"url": "^0.11.0",
"yamljs": "^0.3.0"
},
"files": [
"*.js",
"*.d.ts",
"*.js.map",
"plugin/*",
"react/*",
"shared/*",
"src/**"
],
"devDependencies": {
"@babel/core": "^7.8.0",
"@ianvs/prettier-plugin-sort-imports": "^3.4.2",
"@testing-library/react": "^13.3.0",
"@types/jest": "^27.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@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": "^14.0.4",
"prettier": "^2.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"typescript": "4.9.5",
"webpack": "^5.65.0",
"yarn-or-npm": "^3.0.1"
},
"peerDependencies": {
"next": ">=13.5.0",
"react": ">=16.8.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"packageManager": "[email protected]"
}