-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.67 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.67 KB
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
{
"name": "m-league-data-web",
"version": "1.0.0",
"description": "web frontend for m-league-data",
"scripts": {
"dev:vite": "vite",
"dev:css": "tailwindcss -o src/styles/tailwind.css --watch",
"dev": "concurrently -r \"npm:dev:vite\" \"npm:dev:css\"",
"build:css": "tailwindcss -o src/styles/tailwind.css",
"prebuild": "tailwindcss -o src/styles/tailwind.css",
"build": "vite build",
"preview": "vite preview",
"preci": "rm -fr node_modules",
"ci": "yarn install --frozen-lockfile",
"lint": "yarn eslint ."
},
"dependencies": {
"axios": "^0.27.2",
"clsx": "^1.1.1",
"echarts": "^5.3.2",
"i18next": "^21.9.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-flip-move": "^3.0.4",
"react-helmet": "^6.1.0",
"react-i18next": "^11.18.5",
"react-router-dom": "^6.3.0",
"react-transition-group": "^4.4.2"
},
"devDependencies": {
"@types/echarts": "^4.9.15",
"@types/node": "^17.0.32",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"@types/react-helmet": "^6.1.5",
"@types/react-transition-group": "^4.4.4",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"@vitejs/plugin-react": "^1.3.2",
"concurrently": "^7.1.0",
"eslint": "^8.18.0",
"eslint-plugin-react": "^7.30.1",
"postcss": "^8.4.13",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.1.10",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.4",
"vite": "^2.9.16",
"vite-plugin-svgr": "^2.1.0"
},
"keywords": [
"m-league",
"react",
"vite"
],
"author": "Debonex <debonexx@gmail.com>",
"license": "MIT"
}