forked from 2024-ITM-Capstone-Design/Front
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.2 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
{
"name": "front",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/plugin-transform-react-jsx": "^7.25.9",
"@emotion/css": "^11.13.5",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@nivo/line": "^0.87.0",
"@tanstack/react-query": "^5.56.2",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-slick": "^0.23.13",
"@types/styled-components": "^5.1.34",
"@vitejs/plugin-react": "^4.3.3",
"axios": "^1.7.7",
"babel-plugin-macros": "^3.1.0",
"file-saver": "^2.0.5",
"get-blob-duration": "^1.2.0",
"jszip": "^3.10.1",
"postcss-import": "^16.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-icons": "^5.3.0",
"react-router-dom": "^6.24.1",
"react-slick": "^0.30.2",
"react-typed": "^2.0.12",
"slick-carousel": "^1.8.1",
"styled-components": "^6.1.11",
"twin.macro": "^3.4.1",
"typescript": "^4.9.5",
"vite": "^5.4.11",
"vite-plugin-babel": "^1.2.0",
"vite-plugin-babel-macros": "^1.0.6",
"web-vitals": "^2.1.4",
"zustand": "^5.0.0-rc.2"
},
"scripts": {
"dev": "vite --host",
"build": "tsc -b && vite build",
"lint": "eslint './src/**/*.{ts,tsx,js,jsx}'",
"lint:fix": "eslint --fix './src/**/*.{ts,tsx,js,jsx}'",
"preview": "vite preview"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@tanstack/react-query-devtools": "^5.58.0",
"@types/file-saver": "^2.0.7",
"@types/node": "^22.9.3",
"autoprefixer": "^10.4.19",
"babel-plugin-styled-components": "^2.1.4",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.4",
"vite-plugin-svgr": "^4.3.0"
},
"babelMacros": {
"twin": {
"preset": "emotion"
}
}
}