-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 2.02 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
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
{
"name": "charmander-front-end",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --coverage"
},
"dependencies": {
"@types/node": "18.11.10",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"axios": "^1.2.1",
"base64url": "^3.0.1",
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"chartjs-adapter-date-fns": "^3.0.0",
"dotenv": "^16.0.3",
"email-validator": "^2.0.4",
"eslint": "8.29.0",
"eslint-config-next": "13.0.6",
"jwt-decode": "^3.1.2",
"next": "13.0.6",
"next-themes": "^0.2.1",
"randomstring": "^1.2.3",
"react": "18.2.0",
"react-calendar": "^4.0.0",
"react-chartjs-2": "^5.0.1",
"react-confetti": "^6.1.0",
"react-dom": "18.2.0",
"react-icons": "^4.7.1",
"react-modal": "^3.16.1",
"react-select": "^5.7.0",
"react-router-dom": "^6.6.1",
"react-use": "^17.4.0",
"tailwind-scrollbar-hide": "^1.1.7",
"typescript": "4.9.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/bcrypt": "^5.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/randomstring": "^1.1.8",
"@types/react-calendar": "^3.9.0",
"@types/react-modal": "^3.13.1",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"autoprefixer": "^10.4.13",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"postcss": "^8.4.19",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4"
},
"browser": {
"fs": false,
"path": false,
"os": false
}
}