-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.13 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
{
"name": "localization-playground",
"private": true,
"version": "0.0.1",
"scripts": {
"dev": "vite --port 3000",
"build": "tsc && vite build",
"preview": "vite preview",
"extractMessages": "tsc formatter.ts --outDir build --skipLibCheck && formatjs extract \"src/**/*.{ts,tsx,vue}\" --ignore=\"src/vite-env.d.ts\" --out-file dist/english.json --format build/formatter.js"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@mantine/core": "^5.0.0",
"@mantine/dates": "^5.0.0",
"@mantine/dropzone": "^5.0.0",
"@mantine/form": "^5.0.0",
"@mantine/hooks": "^5.0.0",
"@mantine/modals": "^5.0.0",
"@mantine/notifications": "^5.0.0",
"@tabler/icons": "^1.78.1",
"dayjs": "^1.11.4",
"react": "^18.2.0",
"react-dom": "^18.0.0",
"react-intl": "^6.0.5",
"react-router-dom": "6"
},
"devDependencies": {
"@formatjs/cli": "^5.0.6",
"@formatjs/cli-lib": "^5.0.6",
"@formatjs/icu-messageformat-parser": "^2.1.4",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^2.0.0",
"typescript": "^4.6.3",
"vite": "^3.0.4"
}
}