-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.21 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
{
"name": "cat-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore ."
},
"dependencies": {
"@ant-design/nextjs-registry": "^1.0.0",
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^2.1.1",
"@tremor/react": "^3.14.1",
"@types/js-cookie": "^3.0.6",
"@types/node": "20.8.9",
"@types/react": "18.2.33",
"@types/react-dom": "18.2.14",
"autoprefixer": "^10.4.16",
"eslint": "8.52.0",
"eslint-config-next": "14.0.0",
"js-cookie": "^3.0.5",
"next": "14.1.4",
"next-auth": "5.0.0-beta.3",
"postcss": "^8.4.31",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"server-only": "^0.0.1",
"tailwindcss": "^3.3.5",
"typescript": "5.2.2"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none"
},
"devDependencies": {
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12"
}
}