-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.69 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "what-is-hooront",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": "21.1.0",
"npm": "10.2.0"
},
"scripts": {
"serve:markup": "concurrently \"node scripts/generateMarkupRoutesWatch.cjs\" \"cross-env MARKUP_MODE=Y vite\"",
"serve:dev": "vite --mode dev",
"serve:mock": "vite --mode mock",
"build": "tsc && vite build",
"build:visualizer": "tsc && cross-env VISUALIZER=Y vite build",
"build:markup": "node scripts/generateMarkupRoutesOnce.cjs && tsc && cross-env MARKUP_MODE=Y vite build",
"start": "npx lite-server --baseDir=dist",
"lint:fix": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prettier:fix": "prettier --write \"**/*.{js,ts,jsx,tsx,json,css,scss,md}\"",
"cleancommit": "npm run prettier:fix && npm run lint:fix",
"test": "jest ./test",
"test:watch": "jest --watch ./tests",
"test:coverage": "jest --coverage ./tests",
"test:coverage:watch": "jest --coverage --watch ./tests",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@tanstack/react-query": "^5.8.9",
"antd": "^5.11.5",
"axios": "^1.6.2",
"class-transformer": "^0.5.1",
"classnames": "^2.3.2",
"dayjs": "^1.11.10",
"eventemitter2": "^6.4.9",
"i18next": "^23.7.6",
"immer": "^10.0.3",
"lodash-es": "^4.17.21",
"normalize.css": "^8.0.1",
"qs": "^6.11.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^2.0.3",
"react-hook-form": "^7.48.2",
"react-i18next": "^13.5.0",
"react-router-dom": "^6.19.0",
"react-tiny-popover": "^8.0.4",
"recoil": "^0.7.7",
"reflect-metadata": "^0.1.13",
"use-immer": "^0.9.0"
},
"devDependencies": {
"@babel/plugin-transform-class-properties": "^7.23.3",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.23.4",
"@babel/plugin-transform-optional-chaining": "^7.23.4",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-interactions": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.5.3",
"@storybook/react": "^7.5.3",
"@storybook/react-vite": "^7.5.3",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.10",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@vitejs/plugin-react": "^4.2.0",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-tui": "^5.4.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.6.15",
"express": "^4.18.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"msw": "^2.0.8",
"prettier": "^3.1.0",
"prettier-eslint-cli": "^8.0.1",
"rollup-plugin-visualizer": "^5.9.2",
"sass": "^1.69.5",
"storybook": "^7.5.3",
"ts-jest": "^29.1.1",
"ts-jest-mock-import-meta": "^1.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vite": "^5.0.2",
"vite-plugin-ejs": "^1.7.0",
"vite-plugin-eslint": "^1.8.1"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"msw": {
"workerDirectory": "public"
}
}