-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 879 Bytes
/
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
{
"name": "vite-lingui",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"i18n": "yarn i18n:extract && yarn i18n:compile",
"i18n:extract": "lingui extract",
"i18n:compile": "lingui compile --typescript",
"postinstall": "yarn i18n"
},
"dependencies": {
"@lingui/react": "^3.13.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@lingui/cli": "^3.13.2",
"@lingui/core": "^3.13.2",
"@lingui/macro": "^3.13.2",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@vitejs/plugin-react": "^1.0.7",
"babel-plugin-macros": "^3.1.0",
"typescript": "^4.5.4",
"vite": "^2.8.0"
}
}