-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
45 lines (45 loc) · 1.29 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
{
"name": "next-export-i18n_example",
"version": "2.2.0",
"description": "Internationalize next.js with true support for next export. Example page for the pages directory (v2.x.x)",
"keywords": [
"next.js",
"react.js",
"typescript",
"i18n",
"export",
"ssg"
],
"author": "Martin Krause <[email protected]> (http://mkrause.info/)",
"license": "MIT",
"scripts": {
"dev": "yarn yaml2json && next dev",
"build": "yarn yaml2json && next build",
"start": "next start",
"lint": "next lint",
"yaml2json": "npx yaml2json ./i18n --pretty --save --recursive",
"export": "yarn yaml2json && next build && next export && npx serve ./out"
},
"dependencies": {
"@vercel/analytics": "^1.0.0",
"next": "^12.1.5",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/react-hooks": "^7.0.1",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^27.4.1",
"@types/react": "^18.0.5",
"eslint": "7.32.0",
"eslint-config-next": "11.0.1",
"jest": "^27.5.1",
"next-export-i18n": "^2.0.0",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3",
"yamljs": "^0.3.0"
}
}