-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.51 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^2.2.3",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.4",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.6",
"axios": "^1.3.4",
"framer-motion": "^11.0.24",
"i18next": "^23.5.1",
"monaco-editor": "^0.39.0",
"msw": "^2.1.7",
"react": "^18.2.0",
"react-cookie": "^7.1.4",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.0.5",
"react-markdown": "^9.0.1",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.3",
"react-syntax-highlighter": "^15.5.0",
"redux": "^5.0.0",
"redux-logger": "^3.0.6",
"redux-saga": "^1.2.1",
"rehype-katex": "^7.0.0",
"rehype-raw": "^7.0.0",
"rehype-react": "^8.0.0",
"remark-math": "^6.0.0",
"ts-md5": "^1.3.1",
"typescript": "^5.3.3",
"uuid": "^9.0.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "vite",
"start:mock": "vite --mode mock",
"build": "vite build",
"build:mock": "vite build --mode mock",
"build:gh-pages": "vite build --mode gh-pages",
"build-and-zip": "vite build && ./scripts/zip-dist.sh",
"init-mock": "npx msw init public --no-save",
"prettier": "npx prettier --write \"src/**/*.{ts,tsx}\"",
"prettier:check": "npx prettier --check \"src/**/*.{ts,tsx}\"",
"lint": "npx eslint --max-warnings 0 src --ext .ts,.js,.tsx,.jsx",
"lint:fix": "npx eslint --fix src --ext .ts,.js,.tsx,.jsx"
},
"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": {
"@tailwindcss/typography": "^0.5.13",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-syntax-highlighter": "^15.5.11",
"@types/redux-logger": "^3.0.9",
"@types/uuid": "^9.0.8",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.15",
"daisyui": "^4.12.10",
"eslint-config-react-app": "^7.0.1",
"postcss": "^8.4.28",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "^0.5.3",
"tailwindcss": "^3.4.4",
"vite": "^5.0.13"
},
"msw": {
"workerDirectory": "public"
}
}