-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 1.16 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
{
"name": "@acme/web-locales",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"lint": "pnpm lint:code && pnpm lint:i18n",
"lint:code": "eslint --max-warnings 0 --ext js,jsx,ts,tsx .",
"lint:code:fix": "eslint --max-warnings 0 --fix --ext js,jsx,ts,tsx .",
"lint:fix": "pnpm lint:code:fix && pnpm lint:i18n:fix",
"lint:i18n": "eslint --max-warnings 0 --ext .json --format node_modules/eslint-plugin-i18n-json/formatter.js translations/",
"lint:i18n:fix": "eslint --max-warnings 0 --fix --ext .json --format node_modules/eslint-plugin-i18n-json/formatter.js translations/"
},
"dependencies": {
"@acme/web-storage": "workspace:*",
"i18next": "^22.0.6",
"next": "^13.0.4",
"next-i18next": "^13.0.0",
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-i18next": "^12.0.0",
"react-is": "^18.2.0"
},
"devDependencies": {
"@acme/eslint-config": "workspace:*",
"@babel/core": "^7.19.1",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"eslint": "^7.32.0",
"eslint-plugin-i18n-json": "^4.0.0",
"@acme/tsconfig": "workspace:*",
"typescript": "^4.5.2",
"webpack": "^5.74.0"
}
}