-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.2 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.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
{
"name": "organize",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run lint && npm run format && next build",
"start": "npm run build && next start",
"lint": "next lint --fix",
"format": "prettier --write .",
"prettier": "npm run lint && npm run format",
"quick-start": "next build && next start"
},
"dependencies": {
"axios": "^1.7.7",
"chart.js": "^4.4.4",
"cookie": "^1.0.1",
"flowbite-react": "^0.10.1",
"icons": "^1.0.0",
"jotai": "^2.10.0",
"js-cookie": "^3.0.5",
"jwt-decode": "^4.0.0",
"next": "^14.2.18",
"organize": "file:",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18",
"react-icons": "^5.3.0"
},
"devDependencies": {
"@types/js-cookie": "^3.0.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-next": "14.2.7",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.5.12",
"tailwindcss": "^3.4.10",
"typescript": "^5.4.3"
}
}