-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 3.03 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "react-boilerplate",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite --mode locals",
"build:development": "tsc && vite build --mode development",
"build:production": "vite build --mode production",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write \"**/*.+(ts|tsx|json|yml|scss)\"",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.9",
"@mui/material": "^5.14.15",
"@mui/x-data-grid": "^6.19.4",
"axios": "^1.5.1",
"draft-js": "^0.11.7",
"draft-js-export-html": "^1.4.1",
"final-form": "^4.20.10",
"i18next": "^23.6.0",
"i18next-browser-languagedetector": "^7.1.0",
"i18next-http-backend": "^2.2.2",
"lodash": "^4.17.21",
"markdown-draft-js": "^2.4.0",
"mui-chips-input": "^2.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draft-wysiwyg": "^1.15.0",
"react-error-boundary": "^4.0.11",
"react-final-form": "^6.5.9",
"react-i18next": "^13.3.1",
"react-router-dom": "^6.17.0",
"react-toastify": "^10.0.4",
"react-virtuoso": "^4.7.0",
"sass": "^1.69.4",
"tiktoken": "^1.0.13"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.5.1",
"@storybook/addon-interactions": "^7.5.1",
"@storybook/addon-links": "^7.5.1",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.5.1",
"@storybook/react": "^7.5.1",
"@storybook/react-vite": "^7.5.1",
"@storybook/testing-library": "^0.2.2",
"@types/draft-js": "^0",
"@types/lodash": "^4",
"@types/markdown-draft-js": "^2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-draft-wysiwyg": "^1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"autoprefixer": "^10.4.17",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-storybook": "^0.6.15",
"husky": "^8.0.0",
"lint-staged": "^15.0.2",
"postcss": "^8.4.35",
"prettier": "3.0.3",
"storybook": "^7.5.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-top-level-await": "^1.4.1",
"vite-plugin-wasm": "^3.3.0"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.{js,ts,tsx,jsx}": [
"eslint --quiet",
"prettier --write"
],
"*.scss": "prettier --write"
}
}