-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·82 lines (82 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·82 lines (82 loc) · 2.2 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
{
"name": "chaellimi",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint && yarn eslint ./src --ext .js,.jsx,.ts,.tsx",
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"lint:fix": "next lint && eslint . --ext .ts,.tsx --fix",
"format": "prettier --write .",
"prepare": "husky install"
},
"lint-staged": {
"**/*.(ts|tsx)": [
"eslint --fix",
"prettier --write"
],
"**/*.(js|jsx)": [
"eslint --fix",
"prettier --write"
],
"**/*.(json|yml|yaml|md)": [
"prettier --write"
]
},
"dependencies": {
"@tanstack/react-query": "^5.80.6",
"@tanstack/react-query-devtools": "^5.80.6",
"@uiw/react-codemirror": "^4.23.12",
"ace-builds": "^1.42.0",
"axios": "^1.9.0",
"clsx": "^2.1.1",
"lucide-react": "^0.513.0",
"next": "15.3.0",
"react": "^19.0.0",
"react-ace": "^14.0.1",
"react-dom": "^19.0.0",
"react-latex-next": "^3.0.0",
"react-markdown": "^10.1.0",
"react-spinners": "^0.17.0",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"sass": "^1.89.1",
"sweetalert2": "^11.22.0",
"vscode-jsonrpc": "^8.2.1",
"vscode-languageserver-protocol": "^3.17.5"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/eslintrc": "^3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"eslint": "^9.24.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "15.3.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"postcss": "^8.5.4",
"prettier": "^3.5.3",
"tailwindcss": "3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}