-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.46 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
{
"name": "react-vite-ts",
"version": "1.0.0",
"description": "Build react app with typescript.",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tsc": "tsc",
"lint": "eslint src test --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "vitest"
},
"author": "hyochan",
"license": "MIT",
"dependencies": {
"@primer/octicons-react": "^19.4.0",
"history": "^5.3.0",
"i18next": "^23.2.11",
"i18next-browser-languagedetector": "^7.1.0",
"i18next-http-backend": "^2.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.0.2",
"react-router-dom": "^6.14.1",
"recoil": "^0.7.7",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@babel/cli": "7.22.9",
"@babel/core": "^7.22.9",
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "7.22.9",
"@babel/preset-react": "7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@babel/runtime": "7.22.6",
"@dooboo/eslint-config-react": "^1.4.0",
"@emotion/babel-plugin": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@honkhonk/vite-plugin-svgr": "^1.1.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.3",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-router-dom": "^5.3.3",
"@types/react-test-renderer": "^18.0.0",
"@types/recoil": "^0.0.9",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitejs/plugin-react": "^4.0.3",
"@vitejs/plugin-react-swc": "^3.3.2",
"@vitest/coverage-c8": "^0.33.0",
"c8": "^8.0.0",
"codecov": "^3.8.3",
"esbuild": "^0.18.13",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jsdom": "^22.1.0",
"prettier": "^3.0.0",
"react-test-renderer": "^18.2.0",
"typescript": "^5.1.6",
"vite": "^4.4.4",
"vite-plugin-babel": "^1.1.3",
"vite-plugin-pwa": "^0.16.4",
"vitest": "^0.33.0"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"packageManager": "[email protected]"
}