-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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
{
"name": "app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format:check": "prettier --check .",
"format": "prettier --write ."
},
"dependencies": {
"@tabler/icons-react": "^3.6.0",
"@tanstack/react-table": "^8.11.7",
"axios": "^1.6.8",
"md5": "^2.3.0",
"mysql2": "^3.9.7",
"next": "13.5.6",
"next-auth": "^4.24.7",
"qs": "^6.11.2",
"react": "^18",
"react-dom": "^18",
"react-markdown": "^9.0.1",
"swiper": "^11.0.5",
"swr": "^2.2.5"
},
"devDependencies": {
"@types/md5": "^2.3.5",
"@types/node": "^20",
"@types/qs": "^6.9.11",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"autoprefixer": "^10",
"eslint": "^8",
"eslint-config-next": "13.5.6",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-prettier": "^5.1.3",
"postcss": "^8",
"postcss-import": "^16.0.0",
"sass": "^1.70.0",
"tailwindcss": "^3",
"typescript": "^5"
}
}