-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 2.25 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
75
76
77
{
"name": "techzara",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 3000",
"start-dev": "next start",
"lint": "next lint",
"test": "jest"
},
"dependencies": {
"@babel/preset-react": "^7.18.6",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@fullcalendar/common": "^5.11.3",
"@fullcalendar/interaction": "^5.11.3",
"@fullcalendar/react": "^5.11.2",
"@fullcalendar/timegrid": "^5.11.3",
"@popperjs/core": "^2.11.6",
"@reduxjs/toolkit": "^1.8.5",
"@types/lodash": "^4.14.187",
"axios": "^1.0.0",
"bootstrap": "^5.2.2",
"chart.js": "^3.9.1",
"classnames": "^2.3.2",
"jest": "^29.0.3",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"next": "12.3.1",
"next-auth": "^4.13.0",
"next-redux-wrapper": "^8.0.0",
"next-transpile-modules": "^9.1.0",
"nookies": "^2.5.2",
"react": "18.2.0",
"react-bootstrap": "^2.5.0",
"react-chartjs-2": "^4.3.1",
"react-dom": "18.2.0",
"react-hook-form": "^7.39.1",
"react-paginate": "^8.1.3",
"react-redux": "^8.0.4",
"react-resize-detector": "^7.1.2",
"swr": "^1.3.0"
},
"devDependencies": {
"@testing-library/dom": "^8.18.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "18.7.20",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"babel-jest": "^29.0.3",
"eslint": "8.24.0",
"eslint-config-next": "12.3.1",
"json-server": "^0.17.0",
"sass": "^1.55.0",
"typescript": "4.8.3"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/.next/",
"<rootDir>/node_modules/"
],
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "<rootDir>/node_modules/babel-jest"
},
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js",
"^~(.*)$": "<rootDir>/$1"
}
}
}