-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) Β· 2.57 KB
/
package.json
File metadata and controls
86 lines (86 loc) Β· 2.57 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
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
{
"name": "flex-front",
"version": "0.1.0",
"private": true,
"scripts": {
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"dev": "next dev",
"build": "npm run prettier && next build",
"start": "next start",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"lint": "eslint './src/**/*.{ts,tsx,js,jsx}'",
"lint:fix": "eslint --fix './src/**/*.{ts,tsx,js,jsx}'",
"lint-staged": "lint-staged"
},
"dependencies": {
"@eslint/config-array": "^0.19.1",
"@next/bundle-analyzer": "^15.1.3",
"@tanstack/react-query": "^5.62.7",
"@tanstack/react-query-devtools": "^5.62.7",
"@toast-ui/chart": "^4.6.1",
"@toast-ui/editor": "^3.2.2",
"@toast-ui/editor-plugin-chart": "^3.0.1",
"@toast-ui/editor-plugin-color-syntax": "^3.1.0",
"@toast-ui/react-editor": "^3.2.3",
"cookie": "^1.0.1",
"dayjs": "^1.11.13",
"framer-motion": "^11.13.3",
"github-markdown-css": "^5.7.0",
"glob": "^11.0.0",
"lightweight-charts": "^4.2.2",
"lru-cache": "^11.0.2",
"motion": "^11.13.1",
"next": "14.2.13",
"react": "^18",
"react-dom": "^18",
"react-markdown": "^9.0.1",
"react-paginate": "^8.2.0",
"react-toastify": "^11.0.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"rimraf": "^6.0.1",
"sharp": "^0.33.5",
"swiper": "^11.1.15",
"tui-color-picker": "^2.2.8",
"usehooks-ts": "^3.1.0",
"zustand": "^5.0.0-rc.2"
},
"overrides": {
"@toast-ui/react-editor": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.60.1",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "14.2.13",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^4.6.2",
"lint-staged": "^15.2.10",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"prettier --cache --write",
"eslint --cache --fix"
],
"*.js": "eslint --cache --fix"
}
}