-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "jx",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src/**/*.{ts,tsx} --fix",
"type-check": "tsc --strict",
"tc": "tsc --strict"
},
"dependencies": {
"axios": "^0.27.2",
"next": "12.2.5",
"next-themes": "^0.2.0",
"react": "18.1.0",
"react-cookie": "^4.1.1",
"react-dom": "18.1.0",
"sharp": "^0.30.7",
"swr": "^1.3.0"
},
"devDependencies": {
"@headlessui/react": "^1.7.2",
"@heroicons/react": "^1.0.6",
"@next/eslint-plugin-next": "^10.0.4",
"@tailwindcss/forms": "^0.5.1",
"@tanstack/react-table": "^8.0.0-beta.8",
"@types/node": "17.0.33",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.4",
"autoprefixer": "^10.4.7",
"eslint": "8.15.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"postcss": "^8.4.13",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.1.10",
"tailwindcss": "^3.1.3",
"typescript": "4.6.4"
}
}