forked from tarun-khanna/i18nify-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.32 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
{
"name": "i18nify-playground",
"homepage": "https://tarun-khanna.github.io/i18nify-playground",
"author": "tarun-khanna",
"licence": "MIT",
"version": "1.8.0",
"private": false,
"scripts": {
"dev": "vite",
"start": "vite build --watch & vite preview",
"build": "vite build",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"rm:all": "rm -rf node_modules .next out dist build",
"re:start": "yarn rm:all && yarn install && yarn dev",
"re:build": "yarn rm:all && yarn install && yarn build",
"re:build-npm": "npm run rm:all && npm install && npm run build",
"dev:host": "vite --host",
"vite:start": "vite",
"vite:build": "vite build",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@faker-js/faker": "^8.1.0",
"@iconify/react": "^4.1.1",
"@monaco-editor/react": "^4.6.0",
"@mui/lab": "^5.0.0-alpha.147",
"@mui/material": "^5.15.6",
"@mui/x-date-pickers": "^6.19.4",
"@razorpay/i18nify-js": "https://gitpkg.now.sh/razorpay/i18nify/packages/i18nify-js?ftx-testing-branch",
"@razorpay/i18nify-react": "^4.0.0",
"apexcharts": "^3.43.0",
"date-fns": "^2.30.0",
"dayjs": "^1.11.10",
"history": "^5.3.0",
"lodash": "^4.17.21",
"numeral": "^2.0.6",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-apexcharts": "^1.4.1",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-hook-form": "^7.47.0",
"react-router-dom": "^6.16.0",
"simplebar-react": "^3.2.4"
},
"devDependencies": {
"@vitejs/plugin-react-swc": "^3.4.0",
"eslint": "^8.51.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-perfectionist": "^2.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"gh-pages": "^6.1.1",
"prettier": "^3.0.3",
"vite": "^4.4.11",
"vite-plugin-checker": "^0.6.2"
}
}