-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.58 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.58 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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "projectflow",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --dir src",
"test": "jest",
"test:ci": "jest --coverage --silent --ci",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"dependencies": {
"@chakra-ui/hooks": "^2.0.2",
"@chakra-ui/icons": "^2.0.1",
"@chakra-ui/layout": "^2.0.0",
"@chakra-ui/react": "^2.0.0",
"@dh-react-hooks/use-raf": "^0.9.1",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@reduxjs/toolkit": "^1.8.2",
"@supabase/supabase-js": "^1.35.3",
"bcrypt": "^5.0.1",
"chart.js": "^3.8.1",
"cookie": "^0.5.0",
"cookies": "^0.8.0",
"easy-peasy": "^5.0.4",
"faunadb": "^4.5.4",
"format-duration": "^2.0.0",
"handlebars": "^4.7.7",
"iframe": "^1.0.0",
"jsonwebtoken": "^9.0.0",
"next": "12.1.6",
"next-auth": "^4.3.4",
"nodemailer": "^6.7.5",
"react": "18.1.0",
"react-chartjs-2": "^4.3.1",
"react-datepicker": "^4.8.0",
"react-dom": "18.1.0",
"react-draggable": "^4.4.5",
"react-hook-form": "^7.31.2",
"react-hot-toast": "^2.2.0",
"react-howler": "^5.2.0",
"react-icons": "^4.4.0",
"react-iframe": "^1.8.0",
"react-joyride": "^2.5.0",
"react-redux": "^8.0.2",
"react-use": "^17.4.0",
"reset-css": "^5.0.1",
"swr": "^1.3.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/jest": "^28.1.4",
"@types/node": "^17.0.40",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"babel-plugin-superjson-next": "^0.4.3",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-testing-library": "^5.5.1",
"husky": "^8.0.1",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"ts-node": "^10.7.0",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.(tsx|ts)": "eslint --cache --fix",
"*": "prettier --write --ignore-unknown"
}
}